From e867c488b9fdc48935ef877d8bb485efd7fffd0f Mon Sep 17 00:00:00 2001 From: Tom Lebreux Date: Wed, 10 Jul 2024 08:44:17 -0400 Subject: [PATCH] Don't fail fast CI workflow (#442) With flaky tests or Docker rate limit, it's very annoying to have a job's failure cancel another job. Instead, let all jobs run to completion, this way we can restart only the failed one. --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 878b94e85..8839d29f2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,6 +22,7 @@ jobs: build: name: CI strategy: + fail-fast: false matrix: archBox: - { arch: amd64, vmArch: x64 }