From aae6aa25938594feb0f0430a50a18cc36ccee006 Mon Sep 17 00:00:00 2001 From: Kyle Squizzato Date: Fri, 13 Sep 2024 18:36:12 -0700 Subject: [PATCH] Fix cleanup job, place e2e testing jobs into own concurrency group Signed-off-by: Kyle Squizzato --- .github/workflows/test.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 33dd3d581..ca32b0ca3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ env: jobs: e2etest: concurrency: - group: test-${{ github.head_ref || github.run_id }} + group: test-e2e-${{ github.head_ref || github.run_id }} cancel-in-progress: true name: E2E Tests runs-on: ubuntu-latest @@ -84,8 +84,16 @@ jobs: if: ${{ always() }} timeout-minutes: 15 steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GO_VERSION }} - name: AWS Test Resources env: - MANAGED_CLUSTER_NAME: '${{ needs.e2etest.outputs.clustername }}' + CLUSTER_NAME: '${{ needs.e2etest.outputs.clustername }}' run: | make dev-aws-nuke