From db9d4cf0910328dead8b65d3384e904253e318c2 Mon Sep 17 00:00:00 2001 From: YuJin Kim Date: Sun, 11 Feb 2024 16:28:43 -0800 Subject: [PATCH] In CI, for Clang/Ubuntu, use Clang 18 [2] --- .github/workflows/cmake-multi-platform.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 382af44..9a335dc 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -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 @@ -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