Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gabime authored Nov 2, 2024
1 parent d330e71 commit c7e7850
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
uses: actions/checkout@v4

- name: CMake
shell: pwsh
shell: cmd
run: |
mkdir build
cd build
Expand All @@ -135,10 +135,12 @@ jobs:
-D CMAKE_CXX_STANDARD=${{ matrix.config.CXX_STANDARD }} ..
- name: Build
shell: pwsh
shell: cmd
run: |
cd build
cmake --build . --parallel --config ${{ matrix.config.BUILD_TYPE }}
- name: Tests
run: ctest -C Release -VV --build-run-dir build/${{ matrix.config.BUILD_TYPE }}
shell: cmd
run: ctest -VV -C {{ matrix.config.BUILD_TYPE }} --test-dir build/tests --build-run-dir build/${{ matrix.config.BUILD_TYPE }} --no-tests=error

0 comments on commit c7e7850

Please sign in to comment.