Skip to content

Commit

Permalink
CI: remove redundant --rerun-failed flag in ctest calls
Browse files Browse the repository at this point in the history
  • Loading branch information
Puerling committed Oct 9, 2024
1 parent 12e3cfe commit 5c94dc2
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 @@ -130,7 +130,7 @@ jobs:
- name: 🧪 Test
shell: bash
working-directory: ${{runner.workspace}}/build
run: ctest -C $BUILD_TYPE --rerun-failed --output-on-failure
run: ctest -C $BUILD_TYPE --output-on-failure

test-clang:
name: clang ${{ matrix.parallelisation }} (${{ matrix.os }})
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:
if: matrix.parallelisation != 'cuda'
shell: bash
working-directory: ${{runner.workspace}}/build
run: ctest -C $BUILD_TYPE --rerun-failed --output-on-failure
run: ctest -C $BUILD_TYPE --output-on-failure

test-nvcpp:
name: nvcpp ${{ matrix.parallelisation }} (ubuntu-22.04)
Expand Down Expand Up @@ -347,7 +347,7 @@ jobs:
if: matrix.parallelisation != 'cuda'
shell: bash
working-directory: ${{runner.workspace}}/build
run: ctest -C $BUILD_TYPE --rerun-failed --output-on-failure
run: ctest -C $BUILD_TYPE --output-on-failure

test-msvc:
name: msvc (windows-2022)
Expand Down Expand Up @@ -385,7 +385,7 @@ jobs:
- name: 🧪 Test
shell: bash
working-directory: ${{runner.workspace}}/build
run: ctest -C $BUILD_TYPE --rerun-failed --output-on-failure
run: ctest -C $BUILD_TYPE --output-on-failure

test-debug-coverage:
name: test debug and coverage (${{ matrix.os }})
Expand Down Expand Up @@ -440,7 +440,7 @@ jobs:
if: matrix.coverage != true
shell: bash
working-directory: ${{runner.workspace}}/build
run: ctest -C $BUILD_TYPE -E $EXCLUDETESTS --rerun-failed --output-on-failure
run: ctest -C $BUILD_TYPE -E $EXCLUDETESTS --output-on-failure

- name: 📚 Install coverage packages
if: matrix.coverage == true
Expand Down Expand Up @@ -554,7 +554,7 @@ jobs:
- name: 🧪 Test
shell: bash
working-directory: ${{runner.workspace}}/build
run: ctest -C $BUILD_TYPE --rerun-failed --output-on-failure
run: ctest -C $BUILD_TYPE --output-on-failure

build-cuda:
runs-on: ${{ matrix.config.os }}
Expand Down

0 comments on commit 5c94dc2

Please sign in to comment.