From 2dc9c5af0cf1b942072c0c54ccc90500833f2afb Mon Sep 17 00:00:00 2001 From: Ben Deane Date: Wed, 8 Oct 2025 21:50:38 -0600 Subject: [PATCH] :arrow_up: :construction_worker: Update sanitizer workflow for clang-21 Problem: - Sanitizer workflows are still running on clang-20. Solution: - Update to clang-21. --- .github/workflows/unit_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 3bc80bda..48a4b698 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -338,8 +338,8 @@ jobs: - compiler: clang cc: "clang" cxx: "clang++" - install: wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 20 - toolchain_root: "/usr/lib/llvm-20" + install: wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 21 + toolchain_root: "/usr/lib/llvm-21" - compiler: gcc cc: "gcc-14" cxx: "g++-14"