Skip to content

Commit

Permalink
Try clang 19.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcfehling committed Feb 7, 2025
1 parent 51cdb8a commit a75ae5c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,11 @@ jobs:
steps:
- name: modules
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 19
sudo apt-get update
sudo apt-get install -yq --no-install-recommends \
clang \
gcc-14 \
libmemkind-dev \
libomp-dev \
libopenmpi-dev \
Expand All @@ -58,7 +59,7 @@ jobs:
run: |
cmake --version
ompi_info --version
clang++ -v
clang++-19 -v
- uses: actions/checkout@v4
with:
repository: kokkos/kokkos
Expand All @@ -70,7 +71,7 @@ jobs:
mkdir build
cd build
cmake -D BUILD_SHARED_LIBS=ON \
-D CMAKE_CXX_COMPILER=clang++ \
-D CMAKE_CXX_COMPILER=clang++-19 \
-D CMAKE_CXX_STANDARD=20 \
-D CMAKE_INSTALL_PREFIX=${GITHUB_WORKSPACE}/../kokkos-install \
-D Kokkos_ENABLE_CUDA=ON \
Expand Down

0 comments on commit a75ae5c

Please sign in to comment.