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-22 12:49:41 +01:00 committed by Alejandro Colomar
parent 929e61d604
commit 742a230e30

View File

@ -69,6 +69,7 @@ jobs:
container-build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [alpine, debian, fedora]