From 055d64c835d63b704083fd165a54c980850163c4 Mon Sep 17 00:00:00 2001 From: Adrian Stobbe Date: Fri, 11 Aug 2023 14:52:09 +0200 Subject: [PATCH 1/2] add e2e-mini to daily test --- .github/workflows/e2e-test-daily.yml | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/.github/workflows/e2e-test-daily.yml b/.github/workflows/e2e-test-daily.yml index 5ce37474f6..b2aa78c94c 100644 --- a/.github/workflows/e2e-test-daily.yml +++ b/.github/workflows/e2e-test-daily.yml @@ -120,3 +120,34 @@ jobs: test: ${{ matrix.test }} kubernetesVersion: ${{ matrix.kubernetesVersion }} provider: ${{ matrix.provider }} + e2e-mini: + name: Run miniconstellation E2E test + runs-on: ubuntu-22.04 + environment: e2e + permissions: + id-token: write + contents: read + packages: write + steps: + - name: Checkout + id: checkout + uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 + with: + ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }} + + - name: Azure login OIDC + uses: azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.7 + with: + client-id: ${{ secrets.AZURE_E2E_MINI_CLIENT_ID }} + tenant-id: ${{ secrets.AZURE_TENANT_ID }} + subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + + - name: Run e2e MiniConstellation + uses: ./.github/actions/e2e_mini + with: + azureClientID: ${{ secrets.AZURE_E2E_MINI_CLIENT_ID }} + azureSubscriptionID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + azureTenantID: ${{ secrets.AZURE_TENANT_ID }} + buildBuddyApiKey: ${{ secrets.BUILDBUDDY_ORG_API_KEY }} + registry: ghcr.io + githubToken: ${{ secrets.GITHUB_TOKEN }} From 7a87cff139cc57f81bfdc17534424300cd87808e Mon Sep 17 00:00:00 2001 From: Adrian Stobbe Date: Sat, 12 Aug 2023 07:39:03 +0200 Subject: [PATCH 2/2] Update .github/workflows/e2e-test-daily.yml Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> --- .github/workflows/e2e-test-daily.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/e2e-test-daily.yml b/.github/workflows/e2e-test-daily.yml index b2aa78c94c..4feaa3a548 100644 --- a/.github/workflows/e2e-test-daily.yml +++ b/.github/workflows/e2e-test-daily.yml @@ -120,6 +120,7 @@ jobs: test: ${{ matrix.test }} kubernetesVersion: ${{ matrix.kubernetesVersion }} provider: ${{ matrix.provider }} + e2e-mini: name: Run miniconstellation E2E test runs-on: ubuntu-22.04