From 742a230e3083956ab658a2a992b010ebd84014e2 Mon Sep 17 00:00:00 2001 From: Iker Pedrosa Date: Fri, 22 Nov 2024 12:49:41 +0100 Subject: [PATCH] CI: avoid cancelling all jobs when one fails If a job in a matrix fails we don't want to cancel all jobs, thus we need to set `fail-fast: false` as a strategy property. Signed-off-by: Iker Pedrosa --- .github/workflows/runner.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/runner.yml b/.github/workflows/runner.yml index 9311874a3..1506e46c7 100644 --- a/.github/workflows/runner.yml +++ b/.github/workflows/runner.yml @@ -69,6 +69,7 @@ jobs: container-build: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: os: [alpine, debian, fedora] -- 2.47.2