Commit dcbb8eb 1 parent ad334e4 commit dcbb8eb Copy full SHA for dcbb8eb
File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -153,18 +153,19 @@ jobs:
153
153
run : echo "C:/msys64/mingw64/bin" >> $GITHUB_PATH
154
154
155
155
- 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
160
156
shell : msys2 {0}
161
157
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 }} \
163
160
-D MUSICA_GIT_TAG=${{ github.sha }} \
164
161
-D MUSICA_ENABLE_MICM=ON \
165
162
-D MUSICA_ENABLE_TUVX=ON \
166
163
-D MUSICA_ENABLE_PYTHON_LIBRARY=ON
167
164
165
+ - name : Build the project
166
+ shell : msys2 {0}
167
+ run : cmake --build build --verbose
168
+
168
169
- name : Run tests
169
170
shell : msys2 {0}
170
171
run : ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure . --verbose
You can’t perform that action at this time.
0 commit comments