Skip to content

Commit

Permalink
Update build-windows.yml
Browse files Browse the repository at this point in the history
using Unix Makefiles
  • Loading branch information
baderouaich authored Sep 29, 2023
1 parent 20a9068 commit f6a33fd
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,11 @@ jobs:
run: |
cmake --version
make --version
ninja --version
- name: Generate Project Files & Build Solution
run: |
md cmake-build-debug && cd cmake-build-debug
cmake .. -GNinja -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTS=ON
ninja tests/all
ninja test
cmake .. -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTS=ON
make tests/all
make test

0 comments on commit f6a33fd

Please sign in to comment.