Skip to content

Commit

Permalink
Fix cleanup job, place e2e testing jobs into own concurrency group
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Squizzato <[email protected]>
  • Loading branch information
squizzi committed Sep 14, 2024
1 parent e8d70dc commit aae6aa2
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit aae6aa2

Please sign in to comment.