From 73d7b4f258fd461cbeae6c0ffba45e5515500b38 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Wed, 18 Jun 2025 14:20:01 +0100 Subject: [PATCH] workflows: Add fail-fast: false to cri-containerd tests At the moment if any of the tests in the matric fails then the rest of the jobs are cancelled, so we have to re-run everything. Add `fail-fast: false` to stop this behaviour. Signed-off-by: stevenhorsman --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6f3fef54ba..1b5b2388bc 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -419,6 +419,7 @@ jobs: if: ${{ inputs.skip-test != 'yes' }} needs: build-kata-static-tarball-amd64 strategy: + fail-fast: false matrix: params: [ { containerd_version: lts, vmm: clh }, @@ -448,6 +449,7 @@ jobs: if: ${{ inputs.skip-test != 'yes' }} needs: build-kata-static-tarball-s390x strategy: + fail-fast: false matrix: params: [ { containerd_version: active, vmm: qemu }, @@ -467,6 +469,7 @@ jobs: if: ${{ inputs.skip-test != 'yes' }} needs: build-kata-static-tarball-ppc64le strategy: + fail-fast: false matrix: params: [ { containerd_version: active, vmm: qemu }, @@ -485,6 +488,7 @@ jobs: if: ${{ inputs.skip-test != 'yes' }} needs: build-kata-static-tarball-arm64 strategy: + fail-fast: false matrix: params: [ { containerd_version: active, vmm: qemu },