[v0.18.0][CI] Fix releases/v0.18.0 ci test only support vllm v0.18.0 (#7686)

### What this PR does / why we need it?
Fix releases/v0.18.0 ci test only support vllm v0.18.0 

Signed-off-by: hfadzxy <starmoon_zhang@163.com>
This commit is contained in:
zhangxinyuehfad
2026-03-26 18:36:04 +08:00
committed by GitHub
parent 124bb00158
commit d781902ce9
9 changed files with 11 additions and 11 deletions

View File

@@ -41,7 +41,7 @@ jobs:
lint:
uses: ./.github/workflows/_pre_commit.yml
with:
vllm: ed359c497a728f08b5b41456c07a688ccd510fbc
vllm: v0.18.0
changes:
runs-on: linux-aarch64-a2b3-0
outputs:
@@ -90,7 +90,7 @@ jobs:
if: ${{ needs.lint.result == 'success' && (needs.changes.outputs.e2e_tracker == 'true' || needs.changes.outputs.ut_tracker == 'true') }}
strategy:
matrix:
vllm_version: [ed359c497a728f08b5b41456c07a688ccd510fbc, v0.18.0]
vllm_version: [v0.18.0]
uses: ./.github/workflows/_unit_test.yaml
with:
vllm: ${{ matrix.vllm_version }}
@@ -102,7 +102,7 @@ jobs:
name: e2e-light
strategy:
matrix:
vllm_version: [ed359c497a728f08b5b41456c07a688ccd510fbc, v0.18.0]
vllm_version: [v0.18.0]
# Note (yikun): If CI resource are limited we can split job into two chain jobs
needs: [lint, changes]
# only trigger e2e test after lint passed and the change is e2e related with pull request.