Fix CI and install docs (#3821)

This commit is contained in:
Lianmin Zheng
2025-02-24 16:17:38 -08:00
committed by GitHub
parent 62bbd34393
commit d7934cde45
10 changed files with 36 additions and 42 deletions

View File

@@ -90,7 +90,7 @@ jobs:
- name: MLA TEST
timeout-minutes: 20
run: |
docker exec -w /sglang-checkout/test/srt ci_sglang python3 test_mla.py
docker exec -w /sglang-checkout/test/srt ci_sglang python3 test_mla.py TestMLA
finish:
needs: [

View File

@@ -107,19 +107,6 @@ jobs:
bash scripts/ci_install_dependency.sh
- name: Run test
if: github.event.pull_request.head.repo.fork == false
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
timeout-minutes: 30
run: |
RANGE=${{ matrix.range }}
range_begin=${RANGE%-*}
range_end=${RANGE#*-}
cd test/srt
python3 run_suite.py --suite per-commit --range-begin ${range_begin} --range-end ${range_end}
- name: Run test (fork)
if: github.event.pull_request.head.repo.fork == true
timeout-minutes: 30
run: |
RANGE=${{ matrix.range }}