From 764f92746a78808dd9d9d5797daf1a7000718de1 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 20 Apr 2026 17:05:00 -0400 Subject: Disable leak check on "macOS" --- .github/workflows/cmake-multi-platform.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index f579713..e2315f7 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -80,7 +80,7 @@ jobs: working-directory: ${{ steps.strings.outputs.build-output-dir }} run: | export ASAN_OPTIONS="verify_asan_link_order=0 strict_string_checks=1 detect_stack_use_after_return=1" - if [[ "$RUNNER_OS" == "macos" ]]; then + if [[ "$RUNNER_OS" == "macOS" ]]; then ASAN_OPTIONS="$ASAN_OPTIONS detect_leaks=0" else ASAN_OPTIONS="$ASAN_OPTIONS detect_leaks=1" -- cgit