File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -66,9 +66,10 @@ concurrency:
66
66
cancel-in-progress : true
67
67
68
68
jobs :
69
+
69
70
lint :
70
71
# Only trigger lint on pull request
71
- if : ${{ github.event_name == 'pull_request' }}
72
+ if : false
72
73
runs-on : ubuntu-latest
73
74
strategy :
74
75
matrix :
@@ -194,9 +195,10 @@ jobs:
194
195
verbose : true
195
196
196
197
e2e :
197
- needs : [lint]
198
- # only trigger e2e test on pull request after lint passed
199
- if : ${{ needs.lint.result == 'success' && github.event_name == 'pull_request' }}
198
+ if : false
199
+ # needs: [lint]
200
+ # # only trigger e2e test on pull request after lint passed
201
+ # if: ${{ needs.lint.result == 'success' && github.event_name == 'pull_request' }}
200
202
strategy :
201
203
max-parallel : 2
202
204
matrix :
@@ -297,12 +299,11 @@ jobs:
297
299
298
300
e2e-4-cards :
299
301
needs : [e2e]
300
- if : ${{ needs.e2e.result == 'success' }}
301
302
strategy :
302
- max-parallel : 1
303
+ max-parallel : 2
303
304
matrix :
304
305
os : [linux-arm64-npu-4]
305
- vllm_version : [main, v0.9.1]
306
+ vllm_version : [v0.9.1, main ]
306
307
name : multicard e2e test
307
308
runs-on : ${{ matrix.os }}
308
309
container :
You can’t perform that action at this time.
0 commit comments