Enable label-based image test and use free runner to run lint (#2864)

### What this PR does / why we need it?
- Enable label-based image test and use free runner to run lint
- soft revert
26f388ba08

### Does this PR introduce _any_ user-facing change?
No

### How was this patch tested?


- vLLM version: main
- vLLM main:
404c85ca72

Signed-off-by: Yikun Jiang <yikunkero@gmail.com>
This commit is contained in:
Yikun Jiang
2025-09-12 10:49:42 +08:00
committed by GitHub
parent 778cb72556
commit 6d8bc38c7b
9 changed files with 57 additions and 24 deletions

View File

@@ -24,6 +24,7 @@ on:
- 'cmake/**'
- 'CMakeLists.txt'
- 'csrc/**'
types: [ labeled ]
push:
# Publish image when tagging, the Dockerfile in tag will be build as tag image
branches:
@@ -42,6 +43,11 @@ on:
- 'CMakeLists.txt'
- 'csrc/**'
# only cancel in-progress runs of the same workflow
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: vllm-ascend image build
@@ -51,6 +57,7 @@ jobs:
'ubuntu-latest' ||
'ubuntu-24.04-arm'
}}
if: ${{ contains(github.event.pull_request.labels.*.name, 'ready') && contains(github.event.pull_request.labels.*.name, 'ready-for-test') }}
steps:
- uses: actions/checkout@v4
with: