From 57cf7eabec39212c9545bf6df435c044784a60e5 Mon Sep 17 00:00:00 2001 From: Yuuichi Asahi Date: Mon, 4 Nov 2024 20:05:34 +0900 Subject: [PATCH] allow to continue run tests even if ruche CI fails --- .github/workflows/build_test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build_test.yaml b/.github/workflows/build_test.yaml index be6936ac..28e2e664 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.unstable }} needs: - check_docker_files @@ -311,11 +312,13 @@ jobs: strategy: matrix: + unstable: [false] backend: # run CUDA tests on Ruche supercomputer - name: cuda image: nvcc runner: [self-hosted, cuda] + unstable: true # run OpenMP tests on Azure server - name: openmp image: gcc