From 38b8cebbfd9a887d77ed68333ed7a189abcc2641 Mon Sep 17 00:00:00 2001 From: "tao.yang" Date: Thu, 30 May 2024 14:50:34 +0800 Subject: [PATCH] CI: Added compatibility test for K8s 1.30 Signed-off-by: tao.yang --- .github/codespell-ignorewords | 3 ++- .github/workflows/auto-nightly-ci.yaml | 22 +++++++++++++++++++++- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/.github/codespell-ignorewords b/.github/codespell-ignorewords index 00bb3cd76..11456249d 100644 --- a/.github/codespell-ignorewords +++ b/.github/codespell-ignorewords @@ -2,4 +2,5 @@ afterall pullrequest keypair shouldnot -controller \ No newline at end of file +controller +NotIn diff --git a/.github/workflows/auto-nightly-ci.yaml b/.github/workflows/auto-nightly-ci.yaml index 25570253d..f1ca35052 100644 --- a/.github/workflows/auto-nightly-ci.yaml +++ b/.github/workflows/auto-nightly-ci.yaml @@ -84,9 +84,29 @@ jobs: ipfamily: dual justE2E: 'true' + call_ci_v1_29: + # it races to upload images and artifacts when all jobs running , so just call_ci_latest build image + needs: [call_ci_latest] + uses: ./.github/workflows/auto-pr-ci.yaml + secrets: inherit + with: + kindNodeImage: kindest/node:v1.29.4 + ipfamily: dual + justE2E: 'true' + + call_ci_v1_30: + # it races to upload images and artifacts when all jobs running , so just call_ci_latest build image + needs: [call_ci_latest] + uses: ./.github/workflows/auto-pr-ci.yaml + secrets: inherit + with: + kindNodeImage: kindest/node:v1.30.0 + ipfamily: dual + justE2E: 'true' + creat_issue: runs-on: ubuntu-latest - needs: [call_ci_latest, call_ci_v1_22, call_ci_v1_23, call_ci_v1_24, call_ci_v1_25, call_ci_v1_26, call_ci_v1_27, call_ci_v1_28] + needs: [call_ci_latest, call_ci_v1_22, call_ci_v1_23, call_ci_v1_24, call_ci_v1_25, call_ci_v1_26, call_ci_v1_27, call_ci_v1_28, call_ci_v1_29, call_ci_v1_30] # https://docs.github.com/en/actions/learn-github-actions/contexts#jobs-context if: ${{ always() && ( needs.call_ci_latest.result == 'failure' || needs.call_ci_v1_22.result == 'failure' || needs.call_ci_v1_23.result == 'failure' || needs.call_ci_v1_24.result == 'failure' || needs.call_ci_v1_25.result == 'failure' || needs.call_ci_v1_26.result == 'failure' || needs.call_ci_v1_27.result == 'failure' || needs.call_ci_v1_28.result == 'failure') }} steps: