From 9e8ed5960df5c507feabc4d2f8b417443d06fc72 Mon Sep 17 00:00:00 2001 From: Kevin Duret Date: Wed, 7 Jun 2023 15:52:15 +0200 Subject: [PATCH] enh(ci): do not stop delivery when one job fails (#4455) --- .github/workflows/plugin-delivery.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/plugin-delivery.yml b/.github/workflows/plugin-delivery.yml index d0a0226d7..56958e9bb 100644 --- a/.github/workflows/plugin-delivery.yml +++ b/.github/workflows/plugin-delivery.yml @@ -64,6 +64,7 @@ jobs: deliver-rpm: runs-on: [self-hosted, common] strategy: + fail-fast: false matrix: distrib: [el7, el8, el9] @@ -83,6 +84,7 @@ jobs: deliver-rpm-legacy: runs-on: [self-hosted, common] strategy: + fail-fast: false matrix: distrib: [el7, el8] major_version: ["21.10", "22.04", "22.10"] @@ -107,6 +109,7 @@ jobs: deliver-deb: runs-on: [self-hosted, common] strategy: + fail-fast: false matrix: distrib: [bullseye] @@ -125,6 +128,7 @@ jobs: deliver-deb-legacy: runs-on: [self-hosted, common] strategy: + fail-fast: false matrix: distrib: [bullseye] major_version: ["22.04", "22.10"]