Skip to content

Commit

Permalink
Add missing compilation flags
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilyBourne committed Dec 13, 2024
1 parent 92c5a3c commit 698786e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build_code/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ runs:
- name: Compile code
run: |
cmake -DCMAKE_TOOLCHAIN=${{ inputs.toolchain }} -B build -S .
cmake --build build
cmake --build build --parallel 4
shell: bash

2 changes: 1 addition & 1 deletion .github/actions/run_tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
steps:
- name: "Run tests"
run: |
ctest -j 2 --timeout 5 --output-junit tests.xml
ctest -j 2 --timeout 5 --output-junit tests.xml --output-on-failure
shell: bash
working-directory:
./build
Expand Down

0 comments on commit 698786e

Please sign in to comment.