Skip to content

Commit a4511e3

Browse files
authored
Speed up macOS smoke test (#28954)
Signed-off-by: Michael Goin <mgoin64@gmail.com> Signed-off-by: mgoin <mgoin64@gmail.com>
1 parent 71d0ae1 commit a4511e3

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/macos-smoke-test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
macos-m1-smoke-test:
1111
runs-on: macos-latest
12-
timeout-minutes: 20
12+
timeout-minutes: 30
1313

1414
steps:
1515
- uses: actions/checkout@v4
@@ -37,15 +37,14 @@ jobs:
3737
- name: Verify installation
3838
run: |
3939
python -c "import vllm; print(f'vLLM version: {vllm.__version__}')"
40-
python -c "import torch; print(f'PyTorch: {torch.__version__}')"
4140
4241
- name: Smoke test vllm serve
43-
timeout-minutes: 10
4442
run: |
4543
# Start server in background
4644
vllm serve Qwen/Qwen3-0.6B \
47-
--max-model-len=2048 \
45+
--max-model-len=2K \
4846
--load-format=dummy \
47+
--hf-overrides '{"num_hidden_layers": 2}' \
4948
--enforce-eager \
5049
--port 8000 &
5150

0 commit comments

Comments
 (0)