We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71d0ae1 commit a4511e3Copy full SHA for a4511e3
.github/workflows/macos-smoke-test.yml
@@ -9,7 +9,7 @@ on:
9
jobs:
10
macos-m1-smoke-test:
11
runs-on: macos-latest
12
- timeout-minutes: 20
+ timeout-minutes: 30
13
14
steps:
15
- uses: actions/checkout@v4
@@ -37,15 +37,14 @@ jobs:
37
- name: Verify installation
38
run: |
39
python -c "import vllm; print(f'vLLM version: {vllm.__version__}')"
40
- python -c "import torch; print(f'PyTorch: {torch.__version__}')"
41
42
- name: Smoke test vllm serve
43
- timeout-minutes: 10
44
45
# Start server in background
46
vllm serve Qwen/Qwen3-0.6B \
47
- --max-model-len=2048 \
+ --max-model-len=2K \
48
--load-format=dummy \
+ --hf-overrides '{"num_hidden_layers": 2}' \
49
--enforce-eager \
50
--port 8000 &
51
0 commit comments