From: romeroalx Date: Wed, 7 May 2025 10:33:08 +0000 (+0200) Subject: build-and-test-all.yml: set fail-fast: false X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f07ca53443a47c1f1ec084c19110c24449b9566;p=thirdparty%2Fpdns.git build-and-test-all.yml: set fail-fast: false --- 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