aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-04-20 13:44:59 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-04-20 14:49:35 -0400
commit3c757efdd019ef82f3814f7d54952dcc5343b8a1 (patch)
treedd376cf322414edf389316641755cc148723e407
parent0d4e19f733102dc6c2749faa71663bd5c1eba447 (diff)
downloadstasis-3c757efdd019ef82f3814f7d54952dcc5343b8a1.tar.gz
asan... delete me
-rw-r--r--.github/workflows/cmake-multi-platform.yml22
1 files changed, 9 insertions, 13 deletions
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