Skip to content

Commit dcbb8eb

Browse files
committedFeb 19, 2025
Putting the configure step in the correct location and actually building
1 parent ad334e4 commit dcbb8eb

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed
 

‎.github/workflows/windows.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -153,18 +153,19 @@ jobs:
153153
run: echo "C:/msys64/mingw64/bin" >> $GITHUB_PATH
154154

155155
- name: Configure with CMake
156-
shell: msys2 {0}
157-
run: cmake -G "MinGW Makefiles" -B build -D CMAKE_BUILD_TYPE=${{ matrix.build_type }}
158-
159-
- name: Build the project
160156
shell: msys2 {0}
161157
run: |
162-
cmake -S . -B build -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} \
158+
cmake -S . -B build -G "MinGW Makefiles" \
159+
-D CMAKE_BUILD_TYPE=${{ matrix.build_type }} \
163160
-D MUSICA_GIT_TAG=${{ github.sha }} \
164161
-D MUSICA_ENABLE_MICM=ON \
165162
-D MUSICA_ENABLE_TUVX=ON \
166163
-D MUSICA_ENABLE_PYTHON_LIBRARY=ON
167164
165+
- name: Build the project
166+
shell: msys2 {0}
167+
run: cmake --build build --verbose
168+
168169
- name: Run tests
169170
shell: msys2 {0}
170171
run: ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure . --verbose

0 commit comments

Comments
 (0)