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
ba5b6823
Unverified
Commit
ba5b6823
authored
Nov 05, 2025
by
Kangyan-Zhou
Committed by
GitHub
Nov 05, 2025
Browse files
Commented out b200 tests due to runner shortage (#12609)
parent
508d2f7a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
26 deletions
+26
-26
.github/workflows/pr-test.yml
.github/workflows/pr-test.yml
+26
-26
No files found.
.github/workflows/pr-test.yml
View file @
ba5b6823
...
@@ -791,34 +791,34 @@ jobs:
...
@@ -791,34 +791,34 @@ jobs:
cd test/srt
cd test/srt
python3 run_suite.py --suite per-commit-8-gpu-h200-deepseek-v32
python3 run_suite.py --suite per-commit-8-gpu-h200-deepseek-v32
unit-test-backend-4-gpu-b200
:
#
unit-test-backend-4-gpu-b200:
needs
:
[
check-changes
,
unit-test-backend-2-gpu
,
sgl-kernel-build-wheels
]
#
needs: [check-changes, unit-test-backend-2-gpu, sgl-kernel-build-wheels]
if
:
always() && !failure() && !cancelled() &&
#
if: always() && !failure() && !cancelled() &&
((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true'))
#
((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true'))
runs-on
:
4-gpu-b200
#
runs-on: 4-gpu-b200
strategy
:
#
strategy:
fail-fast
:
false
#
fail-fast: false
steps
:
#
steps:
-
name
:
Checkout code
#
- name: Checkout code
uses
:
actions/checkout@v4
#
uses: actions/checkout@v4
-
name
:
Download artifacts
#
- name: Download artifacts
if
:
needs.check-changes.outputs.sgl_kernel == 'true'
#
if: needs.check-changes.outputs.sgl_kernel == 'true'
uses
:
actions/download-artifact@v4
#
uses: actions/download-artifact@v4
with
:
#
with:
path
:
sgl-kernel/dist/
#
path: sgl-kernel/dist/
merge-multiple
:
true
#
merge-multiple: true
pattern
:
wheel-python3.10-cuda12.9
#
pattern: wheel-python3.10-cuda12.9
-
name
:
Install dependencies
#
- name: Install dependencies
run
:
|
#
run: |
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} IS_BLACKWELL=1 bash scripts/ci/ci_install_dependency.sh
#
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} IS_BLACKWELL=1 bash scripts/ci/ci_install_dependency.sh
-
name
:
Run test
#
- name: Run test
timeout-minutes
:
45
#
timeout-minutes: 45
run
:
|
#
run: |
cd test/srt
#
cd test/srt
python3 run_suite.py --suite per-commit-4-gpu-b200 --auto-partition-id 0 --auto-partition-size 1 --timeout-per-file 3600
#
python3 run_suite.py --suite per-commit-4-gpu-b200 --auto-partition-id 0 --auto-partition-size 1 --timeout-per-file 3600
unit-test-backend-4-gpu-gb200
:
unit-test-backend-4-gpu-gb200
:
needs
:
[
check-changes
,
sgl-kernel-build-wheels-arm
]
needs
:
[
check-changes
,
sgl-kernel-build-wheels-arm
]
...
@@ -872,7 +872,7 @@ jobs:
...
@@ -872,7 +872,7 @@ jobs:
accuracy-test-2-gpu
,
accuracy-test-2-gpu
,
unit-test-deepep-4-gpu
,
unit-test-deepep-4-gpu
,
unit-test-deepep-8-gpu
,
unit-test-deepep-8-gpu
,
unit-test-backend-4-gpu-b200
,
#
unit-test-backend-4-gpu-b200,
unit-test-backend-4-gpu-gb200
,
unit-test-backend-4-gpu-gb200
,
]
]
if
:
always()
if
:
always()
...
...
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