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 Oct 2, 2024
1 parent 58debcb commit c2da825
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-macos-homebrew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ jobs:
run: |
cd ${GITHUB_WORKSPACE}/build
ctest . \
-L "quick|elmerice-fast" \
-LE slow \
-j$(sysctl -n hw.logicalcpu) \
--timeout 180
--timeout 300
- name: re-run tests
if: always() && (steps.run-ctest.outcome == 'failure')
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-windows-mingw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ jobs:
run: |
cd ${GITHUB_WORKSPACE}/build
ctest . \
-L "quick|elmerice-fast" \
-LE slow \
-j$(nproc) \
--timeout 180
--timeout 300
- name: re-run tests
if: always() && (steps.run-ctest.outcome == 'failure')
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@ jobs:
run: |
cd ${GITHUB_WORKSPACE}/build
ctest . \
-L "quick|elmerice-fast" \
-LE slow \
-j$(nproc) \
--timeout 180
--timeout 300
- name: Re-run tests
if: always() && (steps.run-ctest.outcome == 'failure')
Expand Down

0 comments on commit c2da825

Please sign in to comment.