chore: some clean-up to e2e tests (#143)

Signed-off-by: bitliu <bitliu@tencent.com>
This commit is contained in:
Xunzhuo
2023-01-26 15:31:59 +08:00
committed by GitHub
parent 4fb9efe3bf
commit f262883611
4 changed files with 19 additions and 16 deletions

View File

@@ -43,7 +43,6 @@ jobs:
with:
go-version: 1.19
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: "checkout ${{ github.ref }}"
uses: actions/checkout@v3
with:
@@ -58,13 +57,13 @@ jobs:
name: higress
path: out/
conformance-test:
gateway-conformance-test:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v3
e2e-test:
ingress-conformance-test:
runs-on: ubuntu-latest
needs: [build]
steps:
@@ -73,11 +72,11 @@ jobs:
with:
go-version: 1.19
- uses: actions/checkout@v3
- name: "Run E2E Tests"
run: GOPROXY="https://proxy.golang.org,direct" make e2e-test
- name: "Run Ingress Conformance Tests"
run: GOPROXY="https://proxy.golang.org,direct" make ingress-conformance-test
publish:
runs-on: ubuntu-latest
needs: [conformance-test,e2e-test]
needs: [ingress-conformance-test,gateway-conformance-test]
steps:
- uses: actions/checkout@v3