From: Iker Pedrosa Date: Fri, 22 Nov 2024 11:49:41 +0000 (+0100) Subject: CI: avoid cancelling all jobs when one fails X-Git-Tag: 4.17.0-rc1~26 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=742a230e3083956ab658a2a992b010ebd84014e2;p=thirdparty%2Fshadow.git 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 --- 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]