From d991b0cdeb3c47c1d5e29a83ddb0ab3e281479eb Mon Sep 17 00:00:00 2001 From: yasahi-hpc <57478230+yasahi-hpc@users.noreply.github.com> Date: Wed, 8 Jan 2025 12:23:33 +0100 Subject: [PATCH] allow to continue run tests even if ruche CI fails (#193) * fix conflicts * ensure that all tests run even if one of them fails * fix: the condition to contiue-on-error * unuse default variable --------- Co-authored-by: Yuuichi Asahi --- .github/workflows/build_test.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build_test.yaml b/.github/workflows/build_test.yaml index ff649d31..d3fbed1e 100644 --- a/.github/workflows/build_test.yaml +++ b/.github/workflows/build_test.yaml @@ -301,6 +301,7 @@ jobs: # test the project test: runs-on: ${{ matrix.backend.runner }} + continue-on-error: ${{ matrix.backend.unstable }} needs: - check_docker_files @@ -317,21 +318,25 @@ jobs: image: nvcc runner: [self-hosted, cuda] use_singularity: true + unstable: true # run OpenMP tests on Azure server - name: openmp image: gcc runner: ubuntu-latest use_singularity: false + unstable: false # run Threads tests on Azure server - name: threads image: gcc runner: ubuntu-latest use_singularity: false + unstable: false # run Serial tests on Azure server - name: serial image: gcc runner: ubuntu-latest use_singularity: false + unstable: false steps: - name: Get artifacts