E2E #2306
This file contains 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: | |
workflow_run: | |
workflows: [Build Images] | |
types: | |
- completed | |
workflow_dispatch: | |
permissions: | |
contents: read | |
id-token: write | |
jobs: | |
e2e: | |
if: ${{ github.event_name == 'merge_group' }} | |
name: E2E | |
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 | |
- run: go version | |
- name: Az CLI login | |
uses: azure/login@v2 | |
if: ${{ github.event_name == 'merge_group' }} | |
with: | |
client-id: ${{ secrets.AZURE_CLIENT_ID }} | |
tenant-id: ${{ secrets.AZURE_TENANT_ID }} | |
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION }} | |
- name: Run E2E | |
env: | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION }} | |
AZURE_LOCATION: ${{ vars.AZURE_LOCATION }} | |
shell: bash | |
run: | | |
set -euo pipefail | |
go test -v ./test/e2e/. -timeout 60m -tags=e2e -count=1 -args -image-tag=$(make version) -image-registry=${{vars.ACR_NAME}} -image-namespace=${{github.repository}} |