diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2025-02-14 19:28:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-14 19:28:26 -0500 |
commit | f96fc908099ce1e2c5ef10079de849da3ed34706 (patch) | |
tree | 22e0ff2f03494f1ac613e53c3d443d258a60c412 /.github | |
parent | 9e15781b353819f106f0fced0322fff1b23f1e56 (diff) | |
parent | 5bac4d7c79ee0148e8464abcbac6035440b4d196 (diff) | |
download | stasis-f96fc908099ce1e2c5ef10079de849da3ed34706.tar.gz |
Merge pull request #95 from jhunkeler/sanitize-docker-archive-name
Sanitize docker archive name
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cmake-multi-platform.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index d9ddd20..ee601b1 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -57,8 +57,9 @@ jobs: cmake -B ${{ steps.strings.outputs.build-output-dir }} -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} - -DBUILD_TESTING=ON - -DBUILD_TESTING_RT=ON + -DTESTS=ON + -DTESTS_RT=ON + -DDEBUG_MESSAGES=ON -S ${{ github.workspace }} - name: Build |