Skip to content

Commit cb01cd8

Browse files
committed
update version
Signed-off-by: wangxiyuan <[email protected]>
1 parent f7d1769 commit cb01cd8

File tree

7 files changed

+13
-14
lines changed

7 files changed

+13
-14
lines changed

.github/workflows/_e2e_test.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
pytest -sv tests/e2e/singlecard/test_vlm.py
106106
pytest -sv tests/e2e/singlecard/multi-modal/test_internvl.py
107107
108-
# ------------------------------------- v1 spec decode test ------------------------------------ #
108+
# ------------------------------------ v1 spec decode test ------------------------------------ #
109109
pytest -sv tests/e2e/singlecard/spec_decode_v1/test_v1_mtp_correctness.py
110110
pytest -sv tests/e2e/singlecard/spec_decode_v1/test_v1_mtp_torchair_correctness.py
111111
# Fix me: test_eagle_correctness OOM error
@@ -182,7 +182,9 @@ jobs:
182182
VLLM_USE_MODELSCOPE: True
183183
if: ${{ inputs.type == 'full' }}
184184
run: |
185+
pytest -sv tests/e2e/multicard/test_aclgraph_capture_replay.py
185186
pytest -sv tests/e2e/multicard/test_torchair_graph_mode.py
187+
pytest -sv tests/e2e/multicard/test_full_graph_mode.py
186188
pytest -sv tests/e2e/multicard/test_data_parallel.py
187189
pytest -sv tests/e2e/multicard/test_expert_parallel.py
188190
pytest -sv tests/e2e/multicard/test_external_launcher.py

.github/workflows/format_pr_body.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Get vLLM version
3838
run: |
39-
VLLM_COMMIT=2918c1b49c88c29783c86f78d2c4221cb9622379
39+
VLLM_COMMIT=v0.11.2
4040
echo "VLLM_COMMIT=https://github.com/vllm-project/vllm/commit/$VLLM_COMMIT" >> $GITHUB_ENV
4141
4242
- name: Checkout repository

.github/workflows/vllm_ascend_test.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
lint:
4343
uses: ./.github/workflows/pre-commit.yml
4444
with:
45-
vllm: releases/v0.11.1
45+
vllm: v0.11.2
4646
changes:
4747
runs-on: ubuntu-latest
4848
outputs:
@@ -72,9 +72,8 @@ jobs:
7272
ut:
7373
needs: [lint, changes]
7474
name: unit test
75-
if: false # 直接禁用
7675
# only trigger unit test after lint passed and the change is e2e and ut related.
77-
# if: ${{ needs.lint.result == 'success' && (needs.changes.outputs.e2e_tracker == 'true' || needs.changes.outputs.ut_tracker == 'true') }}
76+
if: ${{ needs.lint.result == 'success' && (needs.changes.outputs.e2e_tracker == 'true' || needs.changes.outputs.ut_tracker == 'true') }}
7877
runs-on: ubuntu-latest
7978
container:
8079
# fixme: vllm-ascend install failed with 8.3.rc1 on github action
@@ -84,7 +83,7 @@ jobs:
8483
VLLM_USE_MODELSCOPE: True
8584
strategy:
8685
matrix:
87-
vllm_version: [releases/v0.11.1, v0.11.0]
86+
vllm_version: [v0.11.2, v0.11.0]
8887
steps:
8988
- name: Install packages
9089
run: |
@@ -139,7 +138,7 @@ jobs:
139138
name: e2e-light
140139
strategy:
141140
matrix:
142-
vllm_version: [releases/v0.11.1, v0.11.0]
141+
vllm_version: [v0.11.2, v0.11.0]
143142
# Note (yikun): If CI resource are limited we can split job into two chain jobs
144143
needs: [lint, changes]
145144
# only trigger e2e test after lint passed and the change is e2e related with pull request.

.github/workflows/vllm_ascend_test_full.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
name: e2e-full
7070
strategy:
7171
matrix:
72-
vllm_version: [releases/v0.11.1]
72+
vllm_version: [v0.11.2]
7373
needs: [changes]
7474
if: ${{ needs.changes.outputs.e2e_tracker == 'true' }}
7575
uses: ./.github/workflows/_e2e_test.yaml

.github/workflows/vllm_ascend_test_nightly_a2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969

7070
single-node-tests:
7171
name: single-node
72-
# if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
72+
if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
7373
needs: multi-node-tests
7474
strategy:
7575
fail-fast: false

.github/workflows/vllm_ascend_test_nightly_a3.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ concurrency:
4343
jobs:
4444
multi-node-tests:
4545
name: multi-node
46-
if: false
47-
# if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
46+
if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
4847
strategy:
4948
fail-fast: false
5049
max-parallel: 1
@@ -87,8 +86,7 @@ jobs:
8786

8887
single-node-tests:
8988
name: single-node
90-
if: false
91-
# if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
89+
if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
9290
needs: multi-node-tests
9391
strategy:
9492
fail-fast: false

docs/source/community/versioning_policy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The table below is the release compatibility matrix for vLLM Ascend release.
4343
For main branch of vLLM Ascend, we usually make it compatible with the latest vLLM release and a newer commit hash of vLLM. Please note that this table is usually updated. Please check it regularly.
4444
| vLLM Ascend | vLLM | Python | Stable CANN | PyTorch/torch_npu |
4545
|-------------|--------------|------------------|-------------|--------------------|
46-
| main | v0.11.0/releases/v0.11.1 | >= 3.10, < 3.12 | 8.3.RC1 | 2.7.1 / 2.7.1 |
46+
| main | v0.11.0 or v0.11.2 | >= 3.10, < 3.12 | 8.3.RC1 | 2.7.1 / 2.7.1 |
4747

4848
## Release cadence
4949

0 commit comments

Comments
 (0)