[Main2Main] Upgrade vllm commit to releases/v0.14.0 (#5911)

### What this PR does / why we need it?
Upgrade vllm commit to releases/v0.14.0

- Re-open cases in `tests/e2e/singlecard/pooling/test_scoring.py`, since
the errors before have been fixed by
https://github.com/vllm-project/vllm/pull/32243
### Does this PR introduce _any_ user-facing change?

### How was this patch tested?

- vLLM version: v0.13.0
- vLLM main:
11b6af5280

Signed-off-by: wjunLu <wjunlu217@gmail.com>
This commit is contained in:
wjunLu
2026-01-15 23:22:43 +08:00
committed by GitHub
parent 372f979aa5
commit 73a3f822c7
7 changed files with 8 additions and 22 deletions

View File

@@ -41,7 +41,7 @@ jobs:
lint:
uses: ./.github/workflows/_pre_commit.yml
with:
vllm: 11b6af5280d6d6dfb8953af16e67b25f819b3be9
vllm: 2c24bc6996cb165fce92f780b388a5e39b3f4060
changes:
runs-on: linux-aarch64-a2-0
outputs:
@@ -84,7 +84,7 @@ jobs:
if: ${{ needs.lint.result == 'success' && (needs.changes.outputs.e2e_tracker == 'true' || needs.changes.outputs.ut_tracker == 'true') }}
strategy:
matrix:
vllm_version: [11b6af5280d6d6dfb8953af16e67b25f819b3be9, v0.13.0]
vllm_version: [2c24bc6996cb165fce92f780b388a5e39b3f4060, v0.13.0]
uses: ./.github/workflows/_unit_test.yaml
with:
vllm: ${{ matrix.vllm_version }}
@@ -96,7 +96,7 @@ jobs:
name: e2e-light
strategy:
matrix:
vllm_version: [11b6af5280d6d6dfb8953af16e67b25f819b3be9, v0.13.0]
vllm_version: [2c24bc6996cb165fce92f780b388a5e39b3f4060, v0.13.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.