chore(deps): update registry.redhat.io/ubi9/go-toolset docker tag to v9.7-1774618347 #437
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 Tests | |
| on: | |
| push: | |
| branches: [ "tech-preview" ] | |
| pull_request: | |
| branches: [ "tech-preview" ] | |
| env: | |
| MODEL_TRANSPARENCY_IMG: quay.io/securesign/model-transparency@sha256:694120e3e99b6dea4d8aa884cc05db5c514d63e46e133bf2e671660c8cffeb74 | |
| permissions: | |
| contents: read | |
| jobs: | |
| test-e2e: | |
| name: Run E2E Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - name: Create kind cluster | |
| uses: helm/kind-action@v1 | |
| with: | |
| cluster_name: kind | |
| - name: Wait for kind cluster to be ready | |
| run: | | |
| kubectl wait --for=condition=Ready nodes --all --timeout=300s | |
| kubectl wait --for=condition=Ready --namespace=kube-system pod --all --timeout=300s | |
| echo "Cluster is ready" | |
| - name: Swap to dev images | |
| run: make dev-images | |
| - name: Run E2E tests | |
| run: | | |
| make test-e2e-ci MODEL_TRANSPARENCY_IMG=${{ env.MODEL_TRANSPARENCY_IMG }} |