Skip to content

Commit

Permalink
allow to continue run tests even if ruche CI fails (#193)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
  • Loading branch information
yasahi-hpc and Yuuichi Asahi authored Jan 8, 2025
1 parent 7c3aff8 commit d991b0c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,7 @@ jobs:
# test the project
test:
runs-on: ${{ matrix.backend.runner }}
continue-on-error: ${{ matrix.backend.unstable }}

needs:
- check_docker_files
Expand All @@ -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
Expand Down

0 comments on commit d991b0c

Please sign in to comment.