Skip to content

Commit

Permalink
Build using Ninja
Browse files Browse the repository at this point in the history
  • Loading branch information
cegonse committed Nov 21, 2024
1 parent b4a62f2 commit d054f25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Install dependencies
run: pip install quom
run: pip install quom && sudo apt-get install -y ninja-build
- name: Run all tests
run: make test
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: test

test: build-cest
cd build && cmake .. && make
cd build && cmake -G Ninja .. && cmake --build . -j8
./build/cest-runner

build-cest:
Expand Down

0 comments on commit d054f25

Please sign in to comment.