[CI] Add custom op to nightly (#3765)

### What this PR does / why we need it?
1. Add custom op to nightly tests, fix
https://github.com/vllm-project/vllm-ascend/pull/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:
c9461e05a4

---------

Signed-off-by: wangli <wangli858794774@gmail.com>
This commit is contained in:
Li Wang
2025-10-27 14:07:03 +08:00
committed by GitHub
parent 4312a92a4f
commit 60ee4af6d0
12 changed files with 11 additions and 2 deletions

View File

@@ -41,6 +41,9 @@ on:
default: main
type: string
description: used for pr level tests
secrets:
KUBECONFIG_B64:
required: true
# Bash shells do not use ~/.profile or ~/.bashrc so these shells need to be explicitly
@@ -53,7 +56,7 @@ defaults:
# only cancel in-progress runs of the same workflow
# and ignore the lint / 8 cards test type
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ascend-nightly-${{ github.ref }}-${{ inputs.config_file_path }}
cancel-in-progress: true
jobs:

View File

@@ -44,7 +44,7 @@ defaults:
# only cancel in-progress runs of the same workflow
# and ignore the lint / 1 card / 4 cards test type
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ascend-nightly-${{ github.ref }}-${{ inputs.tests }}
cancel-in-progress: true
jobs:

View File

@@ -53,6 +53,9 @@ jobs:
- name: qwen3-32b-in8-a2
os: linux-aarch64-a2-4
tests: tests/e2e/nightly/models/test_qwen3_32b_int8.py
- name: test_custom_op
os: linux-aarch64-a2-1
tests: tests/e2e/nightly/ops
uses: ./.github/workflows/_e2e_nightly_single_node.yaml
with:
vllm: v0.11.0

View File

@@ -102,3 +102,6 @@ jobs:
replicas: 1
size: ${{ matrix.test_config.size }}
config_file_path: ${{ matrix.test_config.config_file_path }}
secrets:
KUBECONFIG_B64: ${{ secrets.KUBECONFIG_B64 }}