e2e: basic test for peerpods #14
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 peer-pods | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ./.github/actions/setup_nix | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
cachixToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
- name: Login to Azure | |
uses: azure/login@a65d910e8af852a8061c627c456678983e180302 # v2.2.0 | |
with: | |
creds: ${{ secrets.CONTRAST_CI_INFRA_AZURE }} | |
- name: Test peer-pods | |
env: | |
azure_subscription_id: ${{ vars.AZURE_SUBSCRIPTION_ID }} | |
azure_tenant_id: ${{ vars.AZURE_TENANT_ID }} | |
azure_client_id: ${{ secrets.CONTRAST_CI_APP_ID }} | |
azure_client_secret: ${{ secrets.CONTRAST_CI_CLIENT_SECRET_AZURE }} | |
run: | | |
export azure_resource_group=contrast-ci | |
export azure_location=germanywestcentral | |
export CONTRAST_CACHE_DIR="./workspace.cache" | |
nix run .#scripts.test-peerpods | |
- name: Terminate cluster | |
if: always() | |
run: | | |
nix run -L .#terraform -- -chdir=infra/azure-peerpods destroy --auto-approve |