From 3c757efdd019ef82f3814f7d54952dcc5343b8a1 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 20 Apr 2026 13:44:59 -0400 Subject: asan... delete me --- .github/workflows/cmake-multi-platform.yml | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to '.github') diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 57ac65d..8d69be4 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -60,19 +60,15 @@ jobs: libzip - name: Configure CMake - run: | - maybe_asan="" - if [[ "${RUNNER_OS}" == "Linux" ]]; then - maybe_asan="-DASAN=ON" - fi - cmake -B ${{ steps.strings.outputs.build-output-dir }} \ - -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} \ - -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ - ${maybe_asan} \ - -DTESTS=ON \ - -DTESTS_VERBOSE=ON \ - -DTESTS_RT=ON \ - -DDEBUG_MESSAGES=ON \ + run: > + cmake -B ${{ steps.strings.outputs.build-output-dir }} + -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} + -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} + -DASAN=ON + -DTESTS=ON + -DTESTS_VERBOSE=ON + -DTESTS_RT=ON + -DDEBUG_MESSAGES=ON -S ${{ github.workspace }} - name: Build -- cgit