From 5c94dc22d65defa6849ba202807eff61a2ba8ed3 Mon Sep 17 00:00:00 2001 From: puerling Date: Wed, 9 Oct 2024 15:12:08 +0200 Subject: [PATCH] CI: remove redundant `--rerun-failed` flag in ctest calls --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0af502d8..66b959225 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }}) @@ -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) @@ -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) @@ -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 }}) @@ -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 @@ -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 }}