Skip to content

Commit

Permalink
In CI, for Clang/Ubuntu, use Clang 18 [2]
Browse files Browse the repository at this point in the history
  • Loading branch information
axionbuster committed Feb 12, 2024
1 parent 30f841e commit db9d4cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
c_compiler: gcc
cpp_compiler: g++
- os: ubuntu-latest
c_compiler: clang
cpp_compiler: clang++
c_compiler: clang-18
cpp_compiler: clang++-18
exclude:
- os: windows-latest
c_compiler: gcc
Expand All @@ -55,7 +55,7 @@ jobs:
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: Install Clang 18 (Ubuntu with Clang)
if: matrix.os == 'ubuntu-latest' && matrix.cpp_compiler == 'clang++'
if: matrix.os == 'ubuntu-latest' && matrix.cpp_compiler == 'clang++-18'
run: |
wget https://apt.llvm.org/llvm.sh
chmod u+x ./llvm.sh
Expand Down

0 comments on commit db9d4cf

Please sign in to comment.