diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/cmake-multi-platform.yml | 22 |
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 |
