Skip to content

Commit

Permalink
ci(github-actions): do not use ninja build on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
JaDogg committed Apr 14, 2024
1 parent e856022 commit e205a89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ jobs:
- name: Configuring CMake
working-directory: main/compiler/cmake-build-release
run: |
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ../
cmake -DCMAKE_BUILD_TYPE=Release ../ -B .
- name: Build
working-directory: main/compiler/cmake-build-release
run: |
ninja all
cmake --build .
- name: Test
working-directory: main/compiler/cmake-build-release
run: |
ninja test
ctest --output-on-failure
check-ubuntu-x86_64:
runs-on: ${{ matrix.os }}
strategy:
Expand Down

0 comments on commit e205a89

Please sign in to comment.