Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
149dc9aa
Unverified
Commit
149dc9aa
authored
Nov 05, 2025
by
alisonshao
Committed by
GitHub
Nov 05, 2025
Browse files
Add nightly test multi gpu configs (#12721)
parent
9a954982
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
.github/workflows/nightly-test.yml
.github/workflows/nightly-test.yml
+9
-0
test/srt/run_suite.py
test/srt/run_suite.py
+3
-0
No files found.
.github/workflows/nightly-test.yml
View file @
149dc9aa
...
@@ -18,6 +18,7 @@ jobs:
...
@@ -18,6 +18,7 @@ jobs:
nightly-test-eval-text-models
:
nightly-test-eval-text-models
:
if
:
github.repository == 'sgl-project/sglang'
if
:
github.repository == 'sgl-project/sglang'
runs-on
:
2-gpu-runner
runs-on
:
2-gpu-runner
continue-on-error
:
true
steps
:
steps
:
-
name
:
Checkout code
-
name
:
Checkout code
uses
:
actions/checkout@v4
uses
:
actions/checkout@v4
...
@@ -35,6 +36,7 @@ jobs:
...
@@ -35,6 +36,7 @@ jobs:
nightly-test-perf-text-models
:
nightly-test-perf-text-models
:
if
:
github.repository == 'sgl-project/sglang'
if
:
github.repository == 'sgl-project/sglang'
runs-on
:
2-gpu-runner
runs-on
:
2-gpu-runner
continue-on-error
:
true
steps
:
steps
:
-
name
:
Checkout code
-
name
:
Checkout code
uses
:
actions/checkout@v4
uses
:
actions/checkout@v4
...
@@ -63,6 +65,7 @@ jobs:
...
@@ -63,6 +65,7 @@ jobs:
nightly-test-eval-vlms
:
nightly-test-eval-vlms
:
if
:
github.repository == 'sgl-project/sglang'
if
:
github.repository == 'sgl-project/sglang'
runs-on
:
2-gpu-runner
runs-on
:
2-gpu-runner
continue-on-error
:
true
steps
:
steps
:
-
name
:
Checkout code
-
name
:
Checkout code
uses
:
actions/checkout@v4
uses
:
actions/checkout@v4
...
@@ -80,6 +83,7 @@ jobs:
...
@@ -80,6 +83,7 @@ jobs:
nightly-test-perf-vlms
:
nightly-test-perf-vlms
:
if
:
github.repository == 'sgl-project/sglang'
if
:
github.repository == 'sgl-project/sglang'
runs-on
:
2-gpu-runner
runs-on
:
2-gpu-runner
continue-on-error
:
true
steps
:
steps
:
-
name
:
Checkout code
-
name
:
Checkout code
uses
:
actions/checkout@v4
uses
:
actions/checkout@v4
...
@@ -108,6 +112,7 @@ jobs:
...
@@ -108,6 +112,7 @@ jobs:
nightly-test-1-gpu
:
nightly-test-1-gpu
:
if
:
github.repository == 'sgl-project/sglang'
if
:
github.repository == 'sgl-project/sglang'
runs-on
:
1-gpu-runner
runs-on
:
1-gpu-runner
continue-on-error
:
true
steps
:
steps
:
-
name
:
Checkout code
-
name
:
Checkout code
uses
:
actions/checkout@v4
uses
:
actions/checkout@v4
...
@@ -125,6 +130,7 @@ jobs:
...
@@ -125,6 +130,7 @@ jobs:
nightly-test-4-gpu
:
nightly-test-4-gpu
:
if
:
github.repository == 'sgl-project/sglang'
if
:
github.repository == 'sgl-project/sglang'
runs-on
:
4-gpu-h100
runs-on
:
4-gpu-h100
continue-on-error
:
true
steps
:
steps
:
-
name
:
Checkout code
-
name
:
Checkout code
uses
:
actions/checkout@v4
uses
:
actions/checkout@v4
...
@@ -142,6 +148,7 @@ jobs:
...
@@ -142,6 +148,7 @@ jobs:
nightly-test-8-gpu-h200
:
nightly-test-8-gpu-h200
:
if
:
github.repository == 'sgl-project/sglang'
if
:
github.repository == 'sgl-project/sglang'
runs-on
:
8-gpu-h200
runs-on
:
8-gpu-h200
continue-on-error
:
true
steps
:
steps
:
-
name
:
Checkout code
-
name
:
Checkout code
uses
:
actions/checkout@v4
uses
:
actions/checkout@v4
...
@@ -159,6 +166,7 @@ jobs:
...
@@ -159,6 +166,7 @@ jobs:
nightly-test-8-gpu-h20
:
nightly-test-8-gpu-h20
:
if
:
github.repository == 'sgl-project/sglang'
if
:
github.repository == 'sgl-project/sglang'
runs-on
:
8-gpu-h20
runs-on
:
8-gpu-h20
continue-on-error
:
true
env
:
env
:
SGLANG_CI_RDMA_ALL_DEVICES
:
"
mlx5_1,mlx5_2,mlx5_3,mlx5_4"
SGLANG_CI_RDMA_ALL_DEVICES
:
"
mlx5_1,mlx5_2,mlx5_3,mlx5_4"
steps
:
steps
:
...
@@ -178,6 +186,7 @@ jobs:
...
@@ -178,6 +186,7 @@ jobs:
nightly-test-4-gpu-b200
:
nightly-test-4-gpu-b200
:
if
:
github.repository == 'sgl-project/sglang'
if
:
github.repository == 'sgl-project/sglang'
runs-on
:
4-gpu-b200
runs-on
:
4-gpu-b200
continue-on-error
:
true
steps
:
steps
:
-
name
:
Checkout code
-
name
:
Checkout code
uses
:
actions/checkout@v4
uses
:
actions/checkout@v4
...
...
test/srt/run_suite.py
View file @
149dc9aa
...
@@ -218,7 +218,10 @@ suites = {
...
@@ -218,7 +218,10 @@ suites = {
"nightly-4-gpu-b200"
:
[
"nightly-4-gpu-b200"
:
[
TestFile
(
"test_fp4_moe.py"
,
300
),
TestFile
(
"test_fp4_moe.py"
,
300
),
],
],
"nightly-4-gpu"
:
[],
"nightly-8-gpu"
:
[],
"nightly-8-gpu"
:
[],
"nightly-8-gpu-h200"
:
[],
"nightly-8-gpu-h20"
:
[],
"__not_in_ci__"
:
[
"__not_in_ci__"
:
[
TestFile
(
"ascend/test_ascend_w8a8_quantization.py"
),
TestFile
(
"ascend/test_ascend_w8a8_quantization.py"
),
TestFile
(
"cpu/test_comm.py"
),
TestFile
(
"cpu/test_comm.py"
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment