We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1505b15 commit 5dd3568Copy full SHA for 5dd3568
1 file changed
.github/workflows/cmake-multi-platform.yml
@@ -118,13 +118,13 @@ jobs:
118
- name: Configure CMake (Windows MinGW)
119
if: matrix.os == 'windows-latest' && matrix.c_compiler == 'gcc'
120
shell: bash
121
- run: >
122
- cmake -G "MinGW Makefiles"
123
- -B ${{ steps.strings.outputs.build-output-dir }}
124
- -S ${{ github.workspace }}
125
- -DCMAKE_C_COMPILER=gcc
126
- -DCMAKE_CXX_COMPILER=g++
127
- -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
+ run: |
+ cmake -G "MinGW Makefiles" \
+ -B "${{ github.workspace }}/build" \
+ -S "${{ github.workspace }}" \
+ -DCMAKE_C_COMPILER=gcc \
+ -DCMAKE_CXX_COMPILER=g++ \
+ -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
128
129
- name: Configure CMake (Windows MSVC)
130
if: matrix.os == 'windows-latest' && matrix.c_compiler == 'cl'
0 commit comments