Skip to content

Commit 5dd3568

Browse files
Update cmake-multi-platform.yml
1 parent 1505b15 commit 5dd3568

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/cmake-multi-platform.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,13 @@ jobs:
118118
- name: Configure CMake (Windows MinGW)
119119
if: matrix.os == 'windows-latest' && matrix.c_compiler == 'gcc'
120120
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 }}
121+
run: |
122+
cmake -G "MinGW Makefiles" \
123+
-B "${{ github.workspace }}/build" \
124+
-S "${{ github.workspace }}" \
125+
-DCMAKE_C_COMPILER=gcc \
126+
-DCMAKE_CXX_COMPILER=g++ \
127+
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
128128
129129
- name: Configure CMake (Windows MSVC)
130130
if: matrix.os == 'windows-latest' && matrix.c_compiler == 'cl'

0 commit comments

Comments
 (0)