From 3aecda2abb801198645b8e8d3a1fac97f4081db1 Mon Sep 17 00:00:00 2001 From: Lan Date: Fri, 2 Aug 2024 13:41:17 +0800 Subject: [PATCH] ci: let matrix do not fail fast. (#1502) Signed-off-by: Lan Liang --- .github/workflows/kind-e2e.yaml | 1 + .github/workflows/presubmit.yaml | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/kind-e2e.yaml b/.github/workflows/kind-e2e.yaml index 41ecc1ec3..de2e2786e 100644 --- a/.github/workflows/kind-e2e.yaml +++ b/.github/workflows/kind-e2e.yaml @@ -9,6 +9,7 @@ jobs: issues: write runs-on: ubuntu-latest strategy: + fail-fast: false matrix: k8sVersion: ["1.25.x", "1.26.x", "1.27.x", "1.28.x", "1.29.x", "1.30.x"] steps: diff --git a/.github/workflows/presubmit.yaml b/.github/workflows/presubmit.yaml index f8fd205f7..0b113a96c 100644 --- a/.github/workflows/presubmit.yaml +++ b/.github/workflows/presubmit.yaml @@ -12,8 +12,9 @@ jobs: issues: write runs-on: ubuntu-latest strategy: - matrix: - k8sVersion: ["1.25.x", "1.26.x", "1.27.x", "1.28.x", "1.29.x", "1.30.x"] + fail-fast: false + matrix: + k8sVersion: ["1.25.x", "1.26.x", "1.27.x", "1.28.x", "1.29.x", "1.30.x"] steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - uses: ./.github/actions/install-deps