diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-05-20 12:38:16 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-05-20 12:38:16 -0400 |
commit | ba18899115db281ebc6911e41095f95cac748502 (patch) | |
tree | 2f135d572b74147fcc977a0e48f5c88f5e4d6bbb | |
parent | e2674aa9fc35aa93ac8d9d8aa1c03247071c0190 (diff) | |
download | ohmycal-ba18899115db281ebc6911e41095f95cac748502.tar.gz |
Windows CI
-rw-r--r-- | .github/workflows/cmake-multi-platform.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 08a9c10..e855cea 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -61,10 +61,10 @@ jobs: - name: Configure CMake (Windows) shell: msys2 {0} run: > - cmake -B ${{ steps.strings.outputs.build-output-dir }} + cmake -B "${{ steps.strings.outputs.build-output-dir }}" -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} - -S ${{ github.workspace }} + -S "${{ github.workspace }}" if: runner.os == 'Windows' - name: Configure CMake @@ -81,7 +81,7 @@ jobs: if: runner.os == 'Windows' - name: Build - run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} + run: cmake --build "${{ steps.strings.outputs.build-output-dir }}" --config ${{ matrix.build_type }} if: runner.os != 'Windows' # TODO: Write ctests |