From: Alan T. DeKok Date: Thu, 15 Jan 2026 15:58:19 +0000 (-0500) Subject: disable leak detection on CI runs for OSX X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2a6b4f93654a859d36e4927f43889ddd6eb8d45;p=thirdparty%2Ffreeradius-server.git disable leak detection on CI runs for OSX the underlying OSX libraries produce a ton of false positives, and we don't have time right now to track them all down and add suppression rules for each one. --- diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index 9389d284a1c..a4e0def527d 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -9,7 +9,7 @@ on: pull_request: env: - ASAN_OPTIONS: symbolize=1 detect_leaks=1 detect_stack_use_after_return=1 + ASAN_OPTIONS: symbolize=1 detect_leaks=0 detect_stack_use_after_return=1 LSAN_OPTIONS: fast_unwind_on_malloc=0:malloc_context_size=50 UBSAN_OPTIONS: print_stacktrace=1 M_PERTURB: "0x42"