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
05d3667a
Unverified
Commit
05d3667a
authored
Oct 21, 2025
by
Shangming Cai
Committed by
GitHub
Oct 21, 2025
Browse files
[CI] disable glm4.1v and fix the flashinfer installation (#11902)
Signed-off-by:
Shangming Cai
<
csmthu@gmail.com
>
parent
260fe755
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
3 deletions
+12
-3
scripts/ci/ci_install_dependency.sh
scripts/ci/ci_install_dependency.sh
+8
-2
test/srt/run_suite.py
test/srt/run_suite.py
+1
-1
test/srt/test_vision_openai_server_a.py
test/srt/test_vision_openai_server_a.py
+3
-0
No files found.
scripts/ci/ci_install_dependency.sh
View file @
05d3667a
...
@@ -34,14 +34,20 @@ else
...
@@ -34,14 +34,20 @@ else
export
UV_SYSTEM_PYTHON
=
true
export
UV_SYSTEM_PYTHON
=
true
PIP_CMD
=
"uv pip"
PIP_CMD
=
"uv pip"
PIP_INSTALL_SUFFIX
=
"--index-strategy unsafe-best-match
--prerelease=allow
"
PIP_INSTALL_SUFFIX
=
"--index-strategy unsafe-best-match"
# Clean up existing installations
# Clean up existing installations
$PIP_CMD
uninstall flashinfer_python sgl-kernel sglang vllm
||
true
$PIP_CMD
uninstall flashinfer_python sgl-kernel sglang vllm
||
true
fi
fi
# Install the main package without deps
$PIP_CMD
install
-e
"python[dev]"
--no-deps
$PIP_INSTALL_SUFFIX
--force-reinstall
# Install flashinfer-python 0.4.0 dependency that requires prerelease (This should be removed when flashinfer fixes this issue)
$PIP_CMD
install
flashinfer-python
==
0.4.0
--prerelease
=
allow
$PIP_INSTALL_SUFFIX
# Install the main package
# Install the main package
$PIP_CMD
install
-e
"python[dev]"
--extra-index-url
https://download.pytorch.org/whl/
${
CU_VERSION
}
$PIP_INSTALL_SUFFIX
--
force-reinstall
$PIP_CMD
install
-e
"python[dev]"
--extra-index-url
https://download.pytorch.org/whl/
${
CU_VERSION
}
$PIP_INSTALL_SUFFIX
--
upgrade
# Install router for pd-disagg test
# Install router for pd-disagg test
SGLANG_ROUTER_BUILD_NO_RUST
=
1
$PIP_CMD
install
-e
"sgl-router"
$PIP_INSTALL_SUFFIX
SGLANG_ROUTER_BUILD_NO_RUST
=
1
$PIP_CMD
install
-e
"sgl-router"
$PIP_INSTALL_SUFFIX
...
...
test/srt/run_suite.py
View file @
05d3667a
...
@@ -133,7 +133,7 @@ suites = {
...
@@ -133,7 +133,7 @@ suites = {
TestFile
(
"test_triton_sliding_window.py"
,
250
),
TestFile
(
"test_triton_sliding_window.py"
,
250
),
TestFile
(
"test_utils_update_weights.py"
,
48
),
TestFile
(
"test_utils_update_weights.py"
,
48
),
TestFile
(
"test_vision_chunked_prefill.py"
,
175
),
TestFile
(
"test_vision_chunked_prefill.py"
,
175
),
TestFile
(
"test_vision_openai_server_a.py"
,
60
8
),
TestFile
(
"test_vision_openai_server_a.py"
,
91
8
),
TestFile
(
"test_vlm_input_format.py"
,
300
),
TestFile
(
"test_vlm_input_format.py"
,
300
),
],
],
"per-commit-2-gpu"
:
[
"per-commit-2-gpu"
:
[
...
...
test/srt/test_vision_openai_server_a.py
View file @
05d3667a
...
@@ -136,6 +136,9 @@ class TestKimiVLServer(ImageOpenAITestMixin):
...
@@ -136,6 +136,9 @@ class TestKimiVLServer(ImageOpenAITestMixin):
pass
pass
@
unittest
.
skip
(
"Temporarily disabling this test to fix CI. It should be re-enabled when #11800 is done."
)
class
TestGLM41VServer
(
ImageOpenAITestMixin
,
VideoOpenAITestMixin
):
class
TestGLM41VServer
(
ImageOpenAITestMixin
,
VideoOpenAITestMixin
):
model
=
"zai-org/GLM-4.1V-9B-Thinking"
model
=
"zai-org/GLM-4.1V-9B-Thinking"
extra_args
=
[
extra_args
=
[
...
...
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