Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update generated #6

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .github/workflows/test_generated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
# DO NOT EDIT
---
name: Go
'on':
- push
- pull_request
on:
push:
pull_request:
pull_request_review_comment:
types:
- deleted
env:
K8S_VERSION: v1.16.4
KIND_CLUSTER_NAME: ovn
Expand Down Expand Up @@ -87,6 +90,8 @@ jobs:
k8s:
name: Build k8s
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' || github.event_name == 'push' || github.event.pull_request_review_comment.comment
== '/retest'
steps:
- name: Set up environment
run: |
Expand Down Expand Up @@ -118,6 +123,7 @@ jobs:
name: e2e-kind-ovn-shard-n-${{ matrix.config.name }}
runs-on: ubuntu-latest
needs: k8s
if: github.event_name == 'pull_request' || github.event_name == 'push' || github.event.pull_request_review_comment.comment== '/retest'
strategy:
matrix:
config:
Expand Down Expand Up @@ -200,6 +206,7 @@ jobs:
name: e2e-kind-ovn-shard-np-${{ matrix.config.name }}
runs-on: ubuntu-latest
needs: k8s
if: github.event_name == 'pull_request' || github.event_name == 'push' || github.event.pull_request_review_comment.comment== '/retest'
strategy:
matrix:
config:
Expand Down Expand Up @@ -281,6 +288,7 @@ jobs:
name: e2e-kind-ovn-shard-s-${{ matrix.config.name }}
runs-on: ubuntu-latest
needs: k8s
if: github.event_name == 'pull_request' || github.event_name == 'push' || github.event.pull_request_review_comment.comment== '/retest'
strategy:
matrix:
config:
Expand Down Expand Up @@ -361,6 +369,7 @@ jobs:
name: e2e-kind-ovn-shard-other-${{ matrix.config.name }}
runs-on: ubuntu-latest
needs: k8s
if: github.event_name == 'pull_request' || github.event_name == 'push' || github.event.pull_request_review_comment.comment== '/retest'
strategy:
matrix:
config:
Expand Down Expand Up @@ -441,6 +450,7 @@ jobs:
name: e2e-control-plane-${{ matrix.config.name }}
runs-on: ubuntu-latest
needs: k8s
if: github.event_name == 'pull_request' || github.event_name == 'push' || github.event.pull_request_review_comment.comment == '/retest'
strategy:
matrix:
config:
Expand Down