From 56c7ecfa83ea0a9e420a407c96eae3b014fb7ace Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Thu, 19 Jun 2025 14:52:58 +0200 Subject: [PATCH] Switch off leak detect in CI --- .github/workflows/build-and-test-all.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test-all.yml b/.github/workflows/build-and-test-all.yml index 89a7420770..b4cd2db3a7 100644 --- a/.github/workflows/build-and-test-all.yml +++ b/.github/workflows/build-and-test-all.yml @@ -181,7 +181,7 @@ jobs: image: "${{ needs.get-runner-container-image.outputs.id }}:${{ needs.get-runner-container-image.outputs.tag }}" env: UBSAN_OPTIONS: 'print_stacktrace=1:halt_on_error=1:suppressions=${{ env.REPO_HOME }}/build-scripts/UBSan.supp' - ASAN_OPTIONS: "" + ASAN_OPTIONS: detect_leaks=0 LSAN_OPTIONS: "suppressions=${{ env.REPO_HOME }}/pdns/recursordist/recursor-lsan.supp" TSAN_OPTIONS: "halt_on_error=1:suppressions=${{ env.REPO_HOME }}/pdns/recursordist/recursor-tsan.supp" options: --sysctl net.ipv6.conf.all.disable_ipv6=0 -- 2.47.2