Skip to content

Commit 2ed6ef0

Browse files
[CI][BugFix] Fix concurrency group expression in Nightly-A2/A3 workflows (vllm-project#10837)
### What this PR does / why we need it? Fix concurrency group expression in Nightly-A2/A3 workflows ### Does this PR introduce _any_ user-facing change? ### How was this patch tested? - vLLM version: v0.22.1 - vLLM main: vllm-project/vllm@967c5c3 Signed-off-by: hfadzxy <starmoon_zhang@163.com>
1 parent de4b37b commit 2ed6ef0

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/_e2e_nightly_multi_node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ defaults:
9191
# only cancel in-progress runs of the same workflow
9292
# and ignore the lint / 8 cards test type
9393
concurrency:
94-
group: ascend-nightly-${{ github.workflow_ref }}-${{ github.ref }}-${{ inputs.soc_version }}-${{ inputs.config_file_path }}
94+
group: ascend-nightly-${{ github.workflow_ref }}-${{ github.ref }}-${{ inputs.soc_version }}-${{ inputs.config_file_path }}${{ inputs.request_id && format('-{0}', inputs.request_id) || '' }}
9595
cancel-in-progress: true
9696

9797
jobs:

.github/workflows/_e2e_nightly_single_node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ defaults:
8080
# only cancel in-progress runs of the same workflow
8181
# and ignore the lint / 1 card / 4 cards test type
8282
concurrency:
83-
group: ascend-nightly-${{ github.workflow_ref }}-${{ github.ref }}-${{ inputs.config_file_path || inputs.tests }}
83+
group: ascend-nightly-${{ github.workflow_ref }}-${{ github.ref }}-${{ inputs.config_file_path || inputs.tests }}${{ inputs.request_id && format('-{0}', inputs.request_id) || '' }}
8484
cancel-in-progress: true
8585

8686
jobs:

.github/workflows/schedule_nightly_test_a2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ defaults:
6262

6363
# only cancel in-progress runs of the same workflow
6464
concurrency:
65-
group: ascend-nightly-${{ github.ref }}-a2${{ github.event.inputs.request_id && format('-{0}', github.event.inputs.request_id) || '' }}
65+
group: ascend-nightly-${{ github.ref }}-a2${{ inputs.request_id && format('-{0}', inputs.request_id) || '' }}
6666
cancel-in-progress: true
6767

6868
env:

.github/workflows/schedule_nightly_test_a3.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ defaults:
6262
shell: bash -el {0}
6363

6464
concurrency:
65-
group: ascend-nightly-${{ github.ref }}-a3${{ github.event.inputs.request_id && format('-{0}', github.event.inputs.request_id) || '' }}
65+
group: ascend-nightly-${{ github.ref }}-a3${{ inputs.request_id && format('-{0}', inputs.request_id) || '' }}
6666
cancel-in-progress: true
6767

6868
env:

0 commit comments

Comments
 (0)