Skip to content

Commit

Permalink
Fix cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan4th committed May 1, 2024
1 parent 5ff97bf commit 1122061
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/systest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
- name: Run tests
timeout-minutes: 60
env:
test_id: systest-${{ steps.vars.outputs.sha_short }}
test_id: systest-${{ steps.vars.outputs.sha_short }}${{ matrix.protocol == 'quic' && '-quic' || '' }}
label: sanity
storage: premium-rwo=10Gi
node_selector: cloud.google.com/gke-nodepool=gha
Expand All @@ -139,7 +139,8 @@ jobs:
- name: Delete pod
if: always()
env:
test_id: systest-${{ steps.vars.outputs.sha_short }}
test_id: systest-${{ steps.vars.outputs.sha_short }}${{ matrix.protocol == 'quic' && '-quic' || '' }}
quic: ${{ matrix.protocol == 'tcp' && 'false' || 'true' }}
run: make -C systest clean

systest-status:
Expand Down

0 comments on commit 1122061

Please sign in to comment.