From 3e9793a005d4bb406f68abfe2c62f6bd0f094de0 Mon Sep 17 00:00:00 2001 From: Rafal Rudnicki Date: Mon, 30 Jun 2025 07:29:32 +0000 Subject: [PATCH] disable clang ASAN tests in CI --- .github/workflows/reusable_sanitizers.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable_sanitizers.yml b/.github/workflows/reusable_sanitizers.yml index 3cb1314e0e..a509446a47 100644 --- a/.github/workflows/reusable_sanitizers.yml +++ b/.github/workflows/reusable_sanitizers.yml @@ -79,7 +79,9 @@ jobs: VCPKG_PATH: "${{github.workspace}}/build/vcpkg/packages/hwloc_x64-windows;${{github.workspace}}/build/vcpkg/packages/tbb_x64-windows;${{github.workspace}}/build/vcpkg/packages/jemalloc_x64-windows" strategy: matrix: - compiler: [{c: cl, cxx: cl}, {c: clang-cl, cxx: clang-cl}] + # TODO restore clang-cl tests + # {c: clang-cl, cxx: clang-cl} + compiler: [{c: cl, cxx: cl}] # Only ASAN is supported sanitizers: [{asan: ON}] name: Sanitizers (windows-latest, compilers=${{matrix.compiler.c}}/${{matrix.compiler.cxx}}, asan=${{matrix.sanitizers.asan}})