]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
build-and-test-all.yml: set fail-fast: false
authorromeroalx <alexis.romero@open-xchange.com>
Wed, 7 May 2025 10:33:08 +0000 (12:33 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Mon, 12 May 2025 13:00:28 +0000 (15:00 +0200)
.github/workflows/build-and-test-all.yml

index 5f7bf0448d092d320504021f9283848cd6517e56..dfcf3e4c54fe88d5b1c880c76ff7de2a2dece5fd 100644 (file)
@@ -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