Clang 23 is now available. Upgrade the clang version used in the CI. Cc: Christian Mazakas Signed-off-by: Ammar Faizi --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 842cdead6fef..1149fabf58f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -206,9 +206,9 @@ jobs: run: | if [[ "${{matrix.build_args.cc_pkg}}" == "clang" ]]; then \ wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh; \ - sudo bash /tmp/llvm.sh 22; \ - sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-22 400; \ - sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-22 400; \ + sudo bash /tmp/llvm.sh 23; \ + sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-23 400; \ + sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-23 400; \ else \ sudo apt-get update -y; \ sudo apt-get install -y ${{matrix.build_args.cc_pkg}} ${{matrix.build_args.cxx_pkg}}; \ -- Ammar Faizi