Merge branch 'optimize/ai-gateway-20260619' #67
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: E2E | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| packages: read | |
| env: | |
| CLUSTER_NAME: e2e | |
| GATEWAY_API_VERSION: v1.5.1 | |
| CONTROLPLANE_IMAGE: ghcr.io/nantian-gw/nantian-controlplane:ci-${{ github.sha }} | |
| jobs: | |
| smoke: | |
| name: Smoke | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Resolve dependency images | |
| run: | | |
| source scripts/ci/dependency-images.sh | |
| { | |
| echo "DATAPLANE_IMAGE=${DATAPLANE_IMAGE:-$DEFAULT_DATAPLANE_IMAGE}" | |
| echo "DASHBOARD_IMAGE=${DASHBOARD_IMAGE:-$DEFAULT_DASHBOARD_IMAGE}" | |
| } >>"${GITHUB_ENV}" | |
| - name: Install Kind tooling | |
| run: scripts/ci/install-kind-tools.sh | |
| - name: Create kind cluster | |
| run: scripts/ci/create-kind-cluster.sh | |
| - name: Install Gateway API CRDs | |
| run: scripts/ci/install-gateway-api-crds.sh | |
| - name: Build current control-plane image | |
| run: scripts/ci/build-controlplane-image.sh | |
| - name: Load images into kind | |
| run: scripts/ci/load-kind-images.sh | |
| - name: Deploy Nantian Gateway | |
| run: scripts/ci/deploy-kind-conformance.sh | |
| - name: Record image versions | |
| run: | | |
| echo "=== Images under test ===" | |
| kubectl get pods -n nantian-gw -o json | jq -r '.items[] | .spec.containers[] | " \(.name): \(.image)"' | |
| echo "=== Image digests ===" | |
| kubectl get pods -n nantian-gw -o json | jq -r '.items[] | .status.containerStatuses[] | " \(.name): \(.imageID)"' | |
| - name: Run smoke test | |
| run: CLUSTER_NAME="$CLUSTER_NAME" ./test/e2e/smoke/run.sh --no-cleanup | |
| - name: Collect diagnostics on failure | |
| if: failure() | |
| run: ARTIFACT_DIR=tmp/e2e-diagnostics scripts/ci/collect-kind-diagnostics.sh | |
| - name: Upload diagnostics | |
| if: failure() | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: e2e-diagnostics | |
| path: tmp/e2e-diagnostics/ | |
| if-no-files-found: warn | |
| - name: Cleanup | |
| if: always() | |
| run: command -v kind >/dev/null 2>&1 && kind delete cluster --name "$CLUSTER_NAME" || true |