Skip to content

Commit

Permalink
Make CI unit tests run sequentially
Browse files Browse the repository at this point in the history
  • Loading branch information
red0124 committed Feb 18, 2024
1 parent fdd153b commit 42d618e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

- name: Run
working-directory: build
run: ctest --output-on-failure -j ${{steps.cores.outputs.count}}
run: ctest --output-on-failure

- name: Generate coverage report
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-latest-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ jobs:

- name: Run
working-directory: build
run: ctest --output-on-failure -j ${{steps.cores.outputs.count}}
run: ctest --output-on-failure
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-latest-gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ jobs:

- name: Run
working-directory: build
run: ctest --output-on-failure -j ${{steps.cores.outputs.count}}
run: ctest --output-on-failure
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-latest-icc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ jobs:
- name: Run
working-directory: build
run: ctest --output-on-failure -j ${{steps.cores.outputs.count}}
run: ctest --output-on-failure
2 changes: 1 addition & 1 deletion .github/workflows/win-msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ jobs:
- name: Run
working-directory: build
run: >-
ctest -C Debug --output-on-failure -j ${{steps.cores.outputs.count}}
ctest -C Debug --output-on-failure
2 changes: 1 addition & 1 deletion .github/workflows/win-msys2-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ jobs:

- name: Run
working-directory: build
run: ctest --output-on-failure -j ${{steps.cores.outputs.count}}
run: ctest --output-on-failure
2 changes: 1 addition & 1 deletion .github/workflows/win-msys2-gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ jobs:

- name: Run
working-directory: build
run: ctest --output-on-failure -j ${{steps.cores.outputs.count}}
run: ctest --output-on-failure

0 comments on commit 42d618e

Please sign in to comment.