From 7ee4b7007a74b73fe1d5963b71039db0196143f7 Mon Sep 17 00:00:00 2001 From: Jover Date: Fri, 12 May 2023 11:24:51 -0700 Subject: [PATCH] pathogen-repo-ci: set build matrix to `fail-fast:false` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Prevents individual runtime failures from interfering with other runtime builds. Motivated by seasonal-flu CI failure in conda runtime that canceled the job in docker runtime.¹ ¹ https://github.com/nextstrain/seasonal-flu/actions/runs/4961494826 --- .github/workflows/pathogen-repo-ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pathogen-repo-ci.yaml b/.github/workflows/pathogen-repo-ci.yaml index cf72ed8..24d6c87 100644 --- a/.github/workflows/pathogen-repo-ci.yaml +++ b/.github/workflows/pathogen-repo-ci.yaml @@ -104,6 +104,7 @@ jobs: build: needs: configuration strategy: + fail-fast: false matrix: runtime: ${{ fromJSON(needs.configuration.outputs.runtimes) }} name: build (${{ matrix.runtime }})