Skip to content

Commit

Permalink
Use latest Ubuntu image and Clang/LLVM compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
keryell committed Feb 13, 2024
1 parent 33d7f20 commit 6c1e57e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ jobs:
# Run into an even more recent Ubuntu inside Docker to have recent
# compilers and C++ standard library
container:
# Ubuntu 23.04
image: docker://ubuntu:lunar
# Ubuntu 23.10
image: docker://ubuntu:mantic

strategy:
# Run all the test even if there are some which fail
Expand All @@ -73,13 +73,13 @@ jobs:
OpenMP: ON
OpenCL: ON

- c_compiler: clang-18
cxx_compiler: clang++-18
- c_compiler: clang-19
cxx_compiler: clang++-19
OpenMP: ON
OpenCL: OFF

- c_compiler: clang-18
cxx_compiler: clang++-18
- c_compiler: clang-19
cxx_compiler: clang++-19
OpenMP: ON
OpenCL: ON

Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
cxx_compiler_version=${CXX_COMPILER#clang++-}
apt-get install -y libomp-${cxx_compiler_version}-dev
- name: Install OpenCL with POCL if needed
- name: Install OpenCL with PoCL if needed
if: matrix.OpenCL == 'ON'
run: apt-get install -y opencl-headers ocl-icd-opencl-dev libpocl-dev

Expand Down

0 comments on commit 6c1e57e

Please sign in to comment.