Skip to content

Commit

Permalink
ci: fix missing environment variables (#3430)
Browse files Browse the repository at this point in the history
Signed-off-by: zhangzujian <zhangzujian.7@gmail.com>
  • Loading branch information
zhangzujian committed Nov 16, 2023
1 parent c736912 commit ca41d0f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build-x86-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1235,6 +1235,9 @@ jobs:

- name: Run E2E
working-directory: ${{ env.E2E_DIR }}
env:
E2E_BRANCH: ${{ github.base_ref || github.ref_name }}
E2E_IP_FAMILY: ${{ matrix.ip-family }}
run: make kube-ovn-ic-conformance-e2e

- name: kubectl ko log
Expand Down Expand Up @@ -1536,6 +1539,8 @@ jobs:

- name: Run E2E
working-directory: ${{ env.E2E_DIR }}
env:
E2E_BRANCH: ${{ github.base_ref || github.ref_name }}
run: make kube-ovn-lb-svc-conformance-e2e

kubevirt-e2e:
Expand Down Expand Up @@ -1629,6 +1634,8 @@ jobs:

- name: Run E2E
working-directory: ${{ env.E2E_DIR }}
env:
E2E_BRANCH: ${{ github.base_ref || github.ref_name }}
run: make kube-ovn-kubevirt-e2e

webhook-e2e:
Expand Down Expand Up @@ -1722,6 +1729,8 @@ jobs:

- name: Run E2E
working-directory: ${{ env.E2E_DIR }}
env:
E2E_BRANCH: ${{ github.base_ref || github.ref_name }}
run: make kube-ovn-webhook-e2e

- name: kubectl ko log
Expand Down Expand Up @@ -1896,6 +1905,7 @@ jobs:
working-directory: ${{ env.E2E_DIR }}
env:
E2E_CILIUM_CHAINING: "true"
E2E_BRANCH: ${{ github.base_ref || github.ref_name }}
run: make k8s-conformance-e2e

- name: kubectl ko log
Expand Down Expand Up @@ -2230,6 +2240,8 @@ jobs:

- name: Run E2E
working-directory: ${{ env.E2E_DIR }}
env:
E2E_BRANCH: ${{ github.base_ref || github.ref_name }}
run: make iptables-vpc-nat-gw-conformance-e2e

- name: kubectl ko log
Expand Down Expand Up @@ -2335,10 +2347,14 @@ jobs:

- name: Run Vip E2E
working-directory: ${{ env.E2E_DIR }}
env:
E2E_BRANCH: ${{ github.base_ref || github.ref_name }}
run: make vip-conformance-e2e

- name: Run Ovn VPC NAT GW E2E
working-directory: ${{ env.E2E_DIR }}
env:
E2E_BRANCH: ${{ github.base_ref || github.ref_name }}
run: make ovn-vpc-nat-gw-conformance-e2e

push:
Expand Down

0 comments on commit ca41d0f

Please sign in to comment.