Skip to content

Commit cb5478f

Browse files
committed
Fix cleanup
1 parent 5ff97bf commit cb5478f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/systest.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
- name: Run tests
125125
timeout-minutes: 60
126126
env:
127-
test_id: systest-${{ steps.vars.outputs.sha_short }}
127+
test_id: systest-${{ steps.vars.outputs.sha_short }}-${{ matrix.protocol == 'quic' && '-quic' || '' }}
128128
label: sanity
129129
storage: premium-rwo=10Gi
130130
node_selector: cloud.google.com/gke-nodepool=gha
@@ -139,7 +139,8 @@ jobs:
139139
- name: Delete pod
140140
if: always()
141141
env:
142-
test_id: systest-${{ steps.vars.outputs.sha_short }}
142+
test_id: systest-${{ steps.vars.outputs.sha_short }}-${{ matrix.protocol == 'quic' && '-quic' || '' }}
143+
quic: ${{ matrix.protocol == 'tcp' && 'false' || 'true' }}
143144
run: make -C systest clean
144145

145146
systest-status:

0 commit comments

Comments
 (0)