Skip to content

Commit

Permalink
Run CTest with -j2.
Browse files Browse the repository at this point in the history
This should manifest in spurious failure if filenames are
reused.
  • Loading branch information
1uc committed Sep 14, 2023
1 parent 75fa31e commit 7c28c32
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest --output-on-failure -C $BUILD_TYPE
run: ctest -j2 --output-on-failure -C $BUILD_TYPE


# Job testing several versions of hdf5
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest --output-on-failure -C $BUILD_TYPE
run: ctest -j2 --output-on-failure -C $BUILD_TYPE


- name: Examples
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest --output-on-failure -C $BUILD_TYPE
run: ctest -j2 --output-on-failure -C $BUILD_TYPE

- name: Examples
working-directory: ${{github.workspace}}/build/src/examples
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest --output-on-failure -C $BUILD_TYPE
run: ctest -j2 --output-on-failure -C $BUILD_TYPE

- name: Examples
working-directory: ${{github.workspace}}/build/src/examples
Expand Down Expand Up @@ -295,7 +295,7 @@ jobs:
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest --output-on-failure -C $BUILD_TYPE
run: ctest -j2 --output-on-failure -C $BUILD_TYPE

- name: Examples
working-directory: ${{github.workspace}}/build/src/examples
Expand Down Expand Up @@ -348,4 +348,4 @@ jobs:
- name: Test
working-directory: ${{github.workspace}}/build
shell: bash -l {0}
run: ctest --output-on-failure -C $BUILD_TYPE
run: ctest -j2 --output-on-failure -C $BUILD_TYPE

0 comments on commit 7c28c32

Please sign in to comment.