From 2807779e71f3a111eb8a0269542fa06333228e38 Mon Sep 17 00:00:00 2001 From: Sebastian Reimers Date: Tue, 24 Dec 2024 16:26:01 +0100 Subject: [PATCH] ci/sanitizers: bump clang and ubuntu --- .github/workflows/sanitizers.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sanitizers.yml b/.github/workflows/sanitizers.yml index 5acf6fe44..bfd94c300 100644 --- a/.github/workflows/sanitizers.yml +++ b/.github/workflows/sanitizers.yml @@ -14,10 +14,10 @@ jobs: strategy: matrix: - os: [ubuntu-22.04] + os: [ubuntu-24.04] sanitizer: [thread, address, undefined] env: - CC: clang-17 + CC: clang-18 CMAKE_GENERATOR: Ninja CFLAGS: "-fsanitize=${{ matrix.sanitizer }} -fno-sanitize-recover=all -fno-sanitize=function" ASAN_OPTIONS: fast_unwind_on_malloc=0 @@ -41,8 +41,8 @@ jobs: - name: Install clang-tools run: | wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - - sudo add-apt-repository "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-17 main" - sudo apt-get update && sudo apt-get install -y clang-17 + sudo add-apt-repository "deb http://apt.llvm.org/noble/ llvm-toolchain-noble-18 main" + sudo apt-get update && sudo apt-get install -y clang-tools-18 - name: make info run: |