Skip to content

Commit

Permalink
Putting the configure step in the correct location and actually building
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Feb 19, 2025
1 parent ad334e4 commit dcbb8eb
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,18 +153,19 @@ jobs:
run: echo "C:/msys64/mingw64/bin" >> $GITHUB_PATH

- name: Configure with CMake
shell: msys2 {0}
run: cmake -G "MinGW Makefiles" -B build -D CMAKE_BUILD_TYPE=${{ matrix.build_type }}

- name: Build the project
shell: msys2 {0}
run: |
cmake -S . -B build -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} \
cmake -S . -B build -G "MinGW Makefiles" \
-D CMAKE_BUILD_TYPE=${{ matrix.build_type }} \
-D MUSICA_GIT_TAG=${{ github.sha }} \
-D MUSICA_ENABLE_MICM=ON \
-D MUSICA_ENABLE_TUVX=ON \
-D MUSICA_ENABLE_PYTHON_LIBRARY=ON
- name: Build the project
shell: msys2 {0}
run: cmake --build build --verbose

- name: Run tests
shell: msys2 {0}
run: ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure . --verbose
Expand Down

0 comments on commit dcbb8eb

Please sign in to comment.