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 <ipedrosa@redhat.com>
This commit is contained in:
Iker Pedrosa
2024-11-23 01:04:19 +01:00
committed by Alejandro Colomar
parent 929e61d604
commit 742a230e30
+1
View File
@@ -69,6 +69,7 @@ jobs:
container-build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [alpine, debian, fedora]