upgrade vLLM to 0.12.0 tag (#4647)

Upgrade vLLM to v0.12.0 tag

- vLLM version: 86e178f7c4d8c3b0eaf3c8e3f810a83f63b90e24
- vLLM main:
86e178f7c4

Signed-off-by: wangxiyuan <wangxiyuan1007@gmail.com>
This commit is contained in:
wangxiyuan
2025-12-03 23:43:05 +08:00
committed by GitHub
parent 26e8e58cea
commit 3f4c0ea0a0
22 changed files with 97 additions and 47 deletions

View File

@@ -32,7 +32,7 @@ on:
description: how many pods will be pulled up via lws.yaml, indicates number of nodes we need
vllm_version:
required: false
default: "86e178f7c4d8c3b0eaf3c8e3f810a83f63b90e24"
default: "v0.12.0"
type: string
description: vllm version to use
vllm_ascend_remote_url:

View File

@@ -36,7 +36,7 @@ jobs:
- name: Get vLLM version
run: |
VLLM_COMMIT=86e178f7c4d8c3b0eaf3c8e3f810a83f63b90e24
VLLM_COMMIT=v0.12.0
echo "VLLM_COMMIT=https://github.com/vllm-project/vllm/commit/$VLLM_COMMIT" >> $GITHUB_ENV
- name: Checkout repository

View File

@@ -51,7 +51,7 @@ jobs:
strategy:
matrix:
include:
- vllm_branch: 86e178f7c4d8c3b0eaf3c8e3f810a83f63b90e24
- vllm_branch: v0.12.0
vllm_ascend_branch: main
max-parallel: 1
container:

View File

@@ -86,7 +86,7 @@ jobs:
tests: tests/e2e/nightly/ops
uses: ./.github/workflows/_e2e_nightly_single_node.yaml
with:
vllm: 86e178f7c4d8c3b0eaf3c8e3f810a83f63b90e24
vllm: v0.12.0
runner: ${{ matrix.test_config.os }}
tests: ${{ matrix.test_config.tests }}
image: 'swr.cn-southwest-2.myhuaweicloud.com/base_image/ascend-ci/vllm-ascend:nightly-a2'
@@ -134,7 +134,7 @@ jobs:
- Qwen3-Next-80B-A3B-Instruct
uses: ./.github/workflows/_e2e_nightly_single_node_models.yaml
with:
vllm: 86e178f7c4d8c3b0eaf3c8e3f810a83f63b90e24
vllm: v0.12.0
runner: ${{ matrix.test_config.os }}
model_list: ${{ toJson(matrix.test_config.model_list) }}
image: 'swr.cn-southwest-2.myhuaweicloud.com/base_image/ascend-ci/cann:8.3.rc2-910b-ubuntu22.04-py3.11'

View File

@@ -139,7 +139,7 @@ jobs:
tests: tests/e2e/nightly/models/test_glm4_5.py
uses: ./.github/workflows/_e2e_nightly_single_node.yaml
with:
vllm: 86e178f7c4d8c3b0eaf3c8e3f810a83f63b90e24
vllm: v0.12.0
runner: ${{ matrix.test_config.os }}
image: 'swr.cn-southwest-2.myhuaweicloud.com/base_image/ascend-ci/vllm-ascend:nightly-a3'
tests: ${{ matrix.test_config.tests }}

View File

@@ -50,7 +50,7 @@ jobs:
with:
filters: |
e2e_tracker:
- '.github/workflows/vllm_ascend_test.yaml'
- '.github/workflows/vllm_ascend_test_pr_full.yaml'
- '.github/workflows/_e2e_test.yaml'
- 'vllm_ascend/**'
- 'csrc/**'
@@ -69,7 +69,7 @@ jobs:
name: e2e-full
strategy:
matrix:
vllm_version: [86e178f7c4d8c3b0eaf3c8e3f810a83f63b90e24]
vllm_version: [v0.12.0]
needs: [changes]
if: ${{ needs.changes.outputs.e2e_tracker == 'true' }}
uses: ./.github/workflows/_e2e_test.yaml

View File

@@ -42,7 +42,7 @@ jobs:
lint:
uses: ./.github/workflows/pre-commit.yml
with:
vllm: 86e178f7c4d8c3b0eaf3c8e3f810a83f63b90e24
vllm: v0.12.0
changes:
runs-on: ubuntu-latest
outputs:
@@ -84,7 +84,7 @@ jobs:
SOC_VERSION: ascend910b1
strategy:
matrix:
vllm_version: [86e178f7c4d8c3b0eaf3c8e3f810a83f63b90e24]
vllm_version: [v0.12.0]
steps:
- name: Free up disk space
@@ -137,7 +137,8 @@ jobs:
--ignore tests/ut/torchair/models/test_torchair_deepseek_v2.py \
--ignore tests/ut/models/test_qwen2_vl.py \
--ignore tests/ut/models/test_qwen2_5_vl.py \
--ignore tests/ut/models/test_qwen2_5_vl_without_padding.py
--ignore tests/ut/models/test_qwen2_5_vl_without_padding.py \
--ignore tests/ut/model_loder
- name: Upload coverage to Codecov
# only upload coverage when commits merged
@@ -154,7 +155,7 @@ jobs:
name: e2e-light
strategy:
matrix:
vllm_version: [86e178f7c4d8c3b0eaf3c8e3f810a83f63b90e24]
vllm_version: [v0.12.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.

View File

@@ -72,7 +72,7 @@ jobs:
- DeepSeek-V2-Lite
uses: ./.github/workflows/_e2e_nightly_single_node_models.yaml
with:
vllm: 86e178f7c4d8c3b0eaf3c8e3f810a83f63b90e24
vllm: v0.12.0
runner: ${{ matrix.runner }}
image: swr.cn-southwest-2.myhuaweicloud.com/base_image/ascend-ci/cann:8.3.rc2-910b-ubuntu22.04-py3.11
model_list: ${{ toJson(matrix.model_list) }}