Add shared runner architecture design #23
Workflow file for this run
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
| # Copyright 2025 The Knative Authors. | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: E2E Tests on Kind | |
| on: | |
| push: | |
| branches: [ 'main', 'release-*' ] | |
| pull_request: | |
| branches: [ 'main', 'release-*' ] | |
| jobs: | |
| e2e-kind: | |
| name: E2E Tests | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'go.mod' | |
| cache: true | |
| - name: Set up Rust | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: stable | |
| target: wasm32-wasip2 | |
| - name: Log in to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Create Kind cluster | |
| uses: helm/kind-action@v1 | |
| with: | |
| cluster_name: knative-wasm-e2e | |
| node_image: kindest/node:v1.34.0 | |
| wait: 120s | |
| - name: Verify cluster | |
| run: | | |
| kubectl cluster-info | |
| kubectl get nodes | |
| - name: Run e2e tests | |
| run: ./goyek --verbose e2e | |
| env: | |
| E2E_IMAGE_BASENAME: ghcr.io/${{ github.repository }}/e2e-${{ github.event.pull_request.number || github.run_id }} | |
| ARTIFACTS: ${{ github.workspace }}/artifacts | |
| - name: Delete e2e images from ghcr.io | |
| if: always() | |
| run: | | |
| .github/scripts/cleanup-e2e-images.sh \ | |
| "${{ github.event.pull_request.number || github.run_id }}" \ | |
| "${{ github.repository_owner }}" \ | |
| "${{ github.event.repository.name }}" | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Upload artifacts on failure | |
| if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: e2e-test-artifacts | |
| path: ${{ github.workspace }}/artifacts | |
| retention-days: 7 |