From 878eaf042e3a9e9c4748926025851858fa5e0924 Mon Sep 17 00:00:00 2001 From: Pat Somaru Date: Tue, 24 Sep 2024 09:13:10 -0400 Subject: [PATCH] add 'continue on error' to ci jobs I think I see PRs being harder to write because all parts of a CI job are cancelled when one fails. I think I am also starting to see that we have enough largely disjoint moving pieces that there will often be one that is failing stress tests at any time. Make CI run all stress tests always to address this. --- .github/workflows/caching-build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/caching-build.yml b/.github/workflows/caching-build.yml index 3d1f89a03..46a82666a 100644 --- a/.github/workflows/caching-build.yml +++ b/.github/workflows/caching-build.yml @@ -75,6 +75,7 @@ jobs: integration-test: runs-on: ubuntu-24.04 needs: build-kernel + continue-on-error: true strategy: matrix: scheduler: [ scx_bpfland, scx_lavd, scx_layered, scx_rlfifo, scx_rustland, scx_rusty ]