Skip to content

Commit

Permalink
ci: fix test step.
Browse files Browse the repository at this point in the history
The flags were switched. tapfiles should use -j to run tests in
parallel, test-results should use -s so only the actual test results
show up on screen.
  • Loading branch information
ericonr committed Sep 20, 2024
1 parent 5cc6b09 commit 1fafe32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ jobs:
- name: Build IOC
run: make -j$(nproc)
- name: Run tests
run: make -s tapfiles && make test-results
run: make -j tapfiles && make -s test-results

0 comments on commit 1fafe32

Please sign in to comment.