[router][ci] Fix maturin build (#13012)

This commit is contained in:
Keyang Ru
2025-11-10 12:33:32 -08:00
committed by GitHub
parent 303cc957e6
commit 9840bf4f84
2 changed files with 2 additions and 4 deletions

View File

@@ -168,7 +168,7 @@ jobs:
cd sgl-router
python3 -m pip install --upgrade pip maturin
pip uninstall -y sglang-router
maturin build --release --profile ci --features vendored-openssl
maturin build --profile ci --features vendored-openssl
pip install target/wheels/*.whl
- name: Run Python unit tests
@@ -275,10 +275,9 @@ jobs:
source "$HOME/.cargo/env"
export RUSTC_WRAPPER=sccache
cd sgl-router
python3 -m venv .venv
python3 -m pip install --upgrade pip maturin
pip uninstall -y sglang-router
maturin build --release --profile ci --features vendored-openssl
maturin build --profile ci --features vendored-openssl
pip install target/wheels/*.whl
- name: Run Python E2E response API tests