Skip to content

Commit

Permalink
Run more tests regularly in CI.
Browse files Browse the repository at this point in the history
The nix workflow takes approx. 30 minutes anyway. So, there is probably
little harm in running more tests without extending the overall duration
of a CI run by too much.
  • Loading branch information
mmuetzel committed Sep 12, 2024
1 parent 583175b commit 833d32b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-macos-homebrew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
CTEST_OUTPUT_ON_FAILURE: 1
run: |
cd ${GITHUB_WORKSPACE}/build
ctest -L quick -j$(sysctl -n hw.logicalcpu)
ctest . -LE slow -j$(sysctl -n hw.logicalcpu)
- name: re-run tests
if: always() && (steps.run-ctest.outcome == 'failure')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-windows-mingw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
CTEST_OUTPUT_ON_FAILURE: 1
run: |
cd ${GITHUB_WORKSPACE}/build
ctest -L quick -j$(nproc)
ctest . -LE slow -j$(nproc)
- name: re-run tests
if: always() && (steps.run-ctest.outcome == 'failure')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
CTEST_OUTPUT_ON_FAILURE: 1
run: |
cd ${GITHUB_WORKSPACE}/build
set -o pipefail && ctest -L "quick|elmerice-fast" -j$(nproc) . | tee ./ctest_output.log
set -o pipefail && ctest -LE slow -j$(nproc) . | tee ./ctest_output.log
- name: Re-run tests
if: always() && (steps.run-ctest.outcome == 'failure')
Expand Down

0 comments on commit 833d32b

Please sign in to comment.