Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow to continue run tests even if ruche CI fails #193

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
tpadioleau marked this conversation as resolved.
Show resolved Hide resolved
# 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
Loading