Skip to content

Commit

Permalink
add kindest/node:1.31.0 for e2e
Browse files Browse the repository at this point in the history
Signed-off-by: tao.yang <[email protected]>
  • Loading branch information
ty-dc committed Sep 25, 2024
1 parent 81907e9 commit b2147e5
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions .github/workflows/auto-nightly-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,34 @@ jobs:
ipfamily: dual
justE2E: 'true'

call_ci_v1_31:
# 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.31.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, call_ci_v1_29, call_ci_v1_30]
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, call_ci_v1_31]
# 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') }}
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' ||
needs.call_ci_v1_29.result == 'failure' ||
needs.call_ci_v1_30.result == 'failure' ||
needs.call_ci_v1_31.result == 'failure'
)}}
steps:
- name: echo
run: |
Expand All @@ -124,4 +147,4 @@ jobs:
body: |
action url: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
labels: "kind/ci-bug"
assignees: "weizhoublue,lou-lan,bzsuni"
assignees: "weizhoublue,lou-lan,bzsuni"

0 comments on commit b2147e5

Please sign in to comment.