Skip to content

Commit

Permalink
Try Ninja on MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
jfalcou committed Oct 1, 2024
1 parent c86f63a commit abdcd25
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,12 @@ jobs:
steps:
- name: Fetch current branch
uses: actions/[email protected]
- name: Install Ninja
uses: seanmiddleditch/gha-setup-ninja@master
- name: Running CMake for MSVC ${{ matrix.cfg.mode }} ${{ matrix.cfg.options }}
run: |
mkdir build && cd build
cmake -G "Visual Studio 17 2022" -A x64 .. -DCMAKE_CXX_FLAGS="${{ matrix.cfg.options }}"
cmake -G Ninja -A x64 .. -DCMAKE_CXX_FLAGS="${{ matrix.cfg.options }}"
- name: Compiling Unit Tests
run: |
cd build
Expand All @@ -122,7 +124,7 @@ jobs:
######################################################################################################################
## AARCH64 Unit Tests
######################################################################################################################
basic-aarch64:
aarch64:
runs-on: [macos-14]
strategy:
fail-fast: false
Expand Down

0 comments on commit abdcd25

Please sign in to comment.