Skip to content

Commit b0403f8

Browse files
authored
[CI] fix ci (#2464)
### What this PR does / why we need it? 1. use action/checkout@v5 instead of v4 2. remove dbo test case because there is issue with it and will be refactored later 3. make vllm-ascend compatible with vllm v0.10.1.1 and add CI for it 4. fix sampler api changes introduced by vllm-project/vllm#22387 6. fix qwen3 moe config changes intruoduced by vllm-project/vllm#20562 7. fix kvcache block changes introduced by vllm-project/vllm#23262 ### Does this PR introduce _any_ user-facing change? N/A ### How was this patch tested? CI passed with existing test. - vLLM version: v0.10.0 - vLLM main: vllm-project/vllm@0c6e40b --------- Signed-off-by: MengqingCao <[email protected]>
1 parent 0ca3f48 commit b0403f8

27 files changed

+390
-200
lines changed

.github/workflows/accuracy_test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888

8989
steps:
9090
- name: Checkout repository
91-
uses: actions/checkout@v5
91+
uses: actions/checkout@v4
9292

9393
- name: Set model name as output
9494
id: set_output
@@ -109,7 +109,7 @@ jobs:
109109
apt-get -y install gcc g++ cmake libnuma-dev
110110
111111
- name: Checkout vllm-project/vllm repo
112-
uses: actions/checkout@v5
112+
uses: actions/checkout@v4
113113
with:
114114
repository: vllm-project/vllm
115115
ref: v0.10.0
@@ -138,7 +138,7 @@ jobs:
138138
echo "GHA_VLLM_ASCEND_VERSION=$RESOLVED_VERSION" >> $GITHUB_ENV
139139
140140
- name: Checkout vllm-project/vllm-ascend repo
141-
uses: actions/checkout@v5
141+
uses: actions/checkout@v4
142142
with:
143143
repository: vllm-project/vllm-ascend
144144
path: ./vllm-ascend
@@ -236,7 +236,7 @@ jobs:
236236
UPSTREAM_REPO: vllm-project/vllm-ascend
237237
steps:
238238
- name: Checkout repository
239-
uses: actions/checkout@v5
239+
uses: actions/checkout@v4
240240
with:
241241
repository: vllm-ascend-ci/vllm-ascend
242242
token: ${{ secrets.PAT_TOKEN }}

.github/workflows/format_pr_body.yaml

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

3535
steps:
3636
- name: Checkout vllm-project/vllm repo
37-
uses: actions/checkout@v5
37+
uses: actions/checkout@v4
3838
with:
3939
repository: vllm-project/vllm
4040
path: ./vllm-empty

.github/workflows/image_310p_openeuler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
'ubuntu-24.04-arm'
5454
}}
5555
steps:
56-
- uses: actions/checkout@v5
56+
- uses: actions/checkout@v4
5757

5858
- name: Print
5959
run: |

.github/workflows/image_310p_ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050

5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v4
5353

5454
- name: Print
5555
run: |

.github/workflows/image_a3_openeuler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
'ubuntu-24.04-arm'
5454
}}
5555
steps:
56-
- uses: actions/checkout@v5
56+
- uses: actions/checkout@v4
5757

5858
- name: Print
5959
run: |

.github/workflows/image_a3_ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050

5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v4
5353

5454
- name: Print
5555
run: |

.github/workflows/image_openeuler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
'ubuntu-24.04-arm'
5353
}}
5454
steps:
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v4
5656

5757
- name: Print
5858
run: |

.github/workflows/image_ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050

5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v4
5353

5454
- name: Print
5555
run: |

.github/workflows/nightly_benchmarks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,12 @@ jobs:
9797
git config --global url."https://gh-proxy.test.osinfra.cn/https://github.com/".insteadOf https://github.com/
9898
9999
- name: Checkout vllm-project/vllm-ascend repo
100-
uses: actions/checkout@v5
100+
uses: actions/checkout@v4
101101
with:
102102
fetch-depth: 0
103103

104104
- name: Checkout vllm-project/vllm repo
105-
uses: actions/checkout@v5
105+
uses: actions/checkout@v4
106106
with:
107107
repository: vllm-project/vllm
108108
path: ./vllm-empty

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout vllm-project/vllm-ascend repo
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v4
1515
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
1616
with:
1717
python-version: "3.11"
1818
- run: echo "::add-matcher::.github/workflows/matchers/actionlint.json"
1919
- run: echo "::add-matcher::.github/workflows/matchers/mypy.json"
2020
- name: Checkout vllm-project/vllm repo
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v4
2222
with:
2323
repository: vllm-project/vllm
2424
path: ./vllm-empty

0 commit comments

Comments
 (0)