Skip to content

Commit 2ae0820

Browse files
committed
fix(ci): run GPU E2E for merge groups
Signed-off-by: Evan Lezar <elezar@nvidia.com>
1 parent 7210ca3 commit 2ae0820

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/branch-e2e.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,12 @@ jobs:
4646
run_kubernetes_ha_e2e="$(jq -r 'index("test:e2e-kubernetes") != null' <<< "$LABELS_JSON")"
4747
;;
4848
merge_group)
49+
# Merge groups have no PR labels. If GPU E2E skips, its required gate
50+
# stays pending until the queue times out and ejects the PR. HA stays
51+
# off until stable.
4952
run_core_e2e=true
50-
run_gpu_e2e="$(jq -r 'index("test:e2e-gpu") != null' <<< "$LABELS_JSON")"
51-
run_kubernetes_ha_e2e="$(jq -r 'index("test:e2e-kubernetes") != null' <<< "$LABELS_JSON")"
53+
run_gpu_e2e=true
54+
run_kubernetes_ha_e2e=false
5255
;;
5356
*)
5457
run_core_e2e=true

0 commit comments

Comments
 (0)