Skip to content

Commit b9b5d35

Browse files
committed
fix(ci): restore missing run step in conformance, clean e2e
1 parent f3cd7c4 commit b9b5d35

2 files changed

Lines changed: 2 additions & 8 deletions

File tree

.github/workflows/conformance.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ jobs:
4444
kubectl get pods -n nantian-gw -o json | jq -r '.items[] | .status.containerStatuses[] | " \(.name): \(.imageID)"'
4545
4646
- name: Run conformance tests
47+
run: |
48+
go test -tags=conformance -count=1 -v -timeout 30m ./conformance/
4749
4850
- name: Collect logs on failure
4951
if: failure()

.github/workflows/e2e.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,7 @@ jobs:
2929
kubectl get pods -n nantian-gw -o json | jq -r '.items[] | .status.containerStatuses[] | " \(.name): \(.imageID)"'
3030
3131
- name: Run smoke test
32-
env:
33-
GATEWAY_IMAGE_SHA: ${{ steps.images.outputs.gateway_sha }}
34-
DATAPLANE_IMAGE_SHA: ${{ steps.images.outputs.dataplane_sha }}
35-
DASHBOARD_IMAGE_SHA: ${{ steps.images.outputs.dashboard_sha }}
3632
run: |
37-
echo "=== Images under test ==="
38-
echo " controlplane: ghcr.io/nantian-gw/nantian-controlplane:sha-${GATEWAY_IMAGE_SHA}"
39-
echo " dataplane: ghcr.io/nantian-gw/dataplane:sha-${DATAPLANE_IMAGE_SHA}"
40-
echo " dashboard: ghcr.io/nantian-gw/dashboard:sha-${DASHBOARD_IMAGE_SHA}"
4133
CLUSTER_NAME=e2e ./test/e2e/smoke/run.sh --no-cleanup
4234
4335
- name: Collect logs on failure

0 commit comments

Comments
 (0)