From 5573b5ed398add8cfff69497d8b44768dd1df0ad Mon Sep 17 00:00:00 2001 From: Scott Vokes Date: Thu, 23 Jan 2025 15:57:04 -0500 Subject: [PATCH] WIP: attempt using clang-14 for AUSAN in CI. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dfb6182f2..624a3f52c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -309,7 +309,7 @@ jobs: matrix: san: [ AUSAN, MSAN, EFENCE ] os: [ ubuntu ] - cc: [ clang, gcc ] + cc: [ clang-14, gcc ] make: [ bmake ] debug: [ DEBUG, RELEASE ] # RELEASE=1 is a no-op exclude: @@ -604,7 +604,7 @@ jobs: if: env.os == 'ubuntu' && steps.cache-prefix.outputs.cache-hit != 'true' run: | uname -a - sudo apt-get install bmake + sudo apt-get install bmake clang-14 - name: Fetch checkout if: steps.cache-prefix.outputs.cache-hit != 'true'