From 2f07ca53443a47c1f1ec084c19110c24449b9566 Mon Sep 17 00:00:00 2001 From: romeroalx Date: Wed, 7 May 2025 12:33:08 +0200 Subject: [PATCH] build-and-test-all.yml: set fail-fast: false --- .github/workflows/build-and-test-all.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-and-test-all.yml b/.github/workflows/build-and-test-all.yml index 5f7bf0448d..dfcf3e4c54 100644 --- a/.github/workflows/build-and-test-all.yml +++ b/.github/workflows/build-and-test-all.yml @@ -29,6 +29,7 @@ jobs: exclude: - sanitizers: tsan features: least + fail-fast: false env: ASAN_OPTIONS: detect_leaks=0 SANITIZERS: ${{ matrix.sanitizers }} @@ -79,6 +80,7 @@ jobs: strategy: matrix: sanitizers: [ubsan+asan, tsan] + fail-fast: false env: UBSAN_OPTIONS: "print_stacktrace=1:halt_on_error=1:suppressions=${{ github.workspace }}/build-scripts/UBSan.supp" # Disabling (intercept_send=0) the custom send wrappers for ASAN and TSAN because they cause the tools to report a race that doesn't exist on actual implementations of send(), see https://github.com/google/sanitizers/issues/1498 -- 2.47.2