Skip to content

Commit 60ee4af

Browse files
authored
[CI] Add custom op to nightly (#3765)
### What this PR does / why we need it? 1. Add custom op to nightly tests, fix #3665 2. Correctly pass github secrets when using workflow_call, see https://docs.github.com/en/actions/how-tos/reuse-automations/reuse-workflows 3. Fix the single node mutual cancellation issue - vLLM version: v0.11.0rc3 - vLLM main: vllm-project/vllm@c9461e0 --------- Signed-off-by: wangli <[email protected]>
1 parent 4312a92 commit 60ee4af

12 files changed

+11
-2
lines changed

.github/workflows/_e2e_nightly_multi_node.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ on:
4141
default: main
4242
type: string
4343
description: used for pr level tests
44+
secrets:
45+
KUBECONFIG_B64:
46+
required: true
4447

4548

4649
# Bash shells do not use ~/.profile or ~/.bashrc so these shells need to be explicitly
@@ -53,7 +56,7 @@ defaults:
5356
# only cancel in-progress runs of the same workflow
5457
# and ignore the lint / 8 cards test type
5558
concurrency:
56-
group: ${{ github.workflow }}-${{ github.ref }}
59+
group: ascend-nightly-${{ github.ref }}-${{ inputs.config_file_path }}
5760
cancel-in-progress: true
5861

5962
jobs:

.github/workflows/_e2e_nightly_single_node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ defaults:
4444
# only cancel in-progress runs of the same workflow
4545
# and ignore the lint / 1 card / 4 cards test type
4646
concurrency:
47-
group: ${{ github.workflow }}-${{ github.ref }}
47+
group: ascend-nightly-${{ github.ref }}-${{ inputs.tests }}
4848
cancel-in-progress: true
4949

5050
jobs:

.github/workflows/vllm_ascend_test_nightly_a2.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ jobs:
5353
- name: qwen3-32b-in8-a2
5454
os: linux-aarch64-a2-4
5555
tests: tests/e2e/nightly/models/test_qwen3_32b_int8.py
56+
- name: test_custom_op
57+
os: linux-aarch64-a2-1
58+
tests: tests/e2e/nightly/ops
5659
uses: ./.github/workflows/_e2e_nightly_single_node.yaml
5760
with:
5861
vllm: v0.11.0

.github/workflows/vllm_ascend_test_nightly_a3.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,6 @@ jobs:
102102
replicas: 1
103103
size: ${{ matrix.test_config.size }}
104104
config_file_path: ${{ matrix.test_config.config_file_path }}
105+
secrets:
106+
KUBECONFIG_B64: ${{ secrets.KUBECONFIG_B64 }}
107+
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)