Skip to content

Commit 6593c61

Browse files
authored
Merge branch 'main' into fix-postgres-panic
2 parents 6e7ca53 + c72f075 commit 6593c61

File tree

139 files changed

+4993
-1164
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+4993
-1164
lines changed

.github/CI_PERMISSIONS.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@
207207
"can_tag_run_ci_label": true,
208208
"can_rerun_failed_ci": true,
209209
"cooldown_interval_minutes": 0,
210-
"reason": "top contributor"
210+
"reason": "custom override"
211211
},
212212
"ZhengdQin": {
213213
"can_tag_run_ci_label": true,
@@ -230,7 +230,7 @@
230230
"airMeng": {
231231
"can_tag_run_ci_label": true,
232232
"can_rerun_failed_ci": true,
233-
"cooldown_interval_minutes": 60,
233+
"cooldown_interval_minutes": 0,
234234
"reason": "custom override"
235235
},
236236
"alisonshao": {

.github/workflows/auto-tune.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Auto tune
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
lint:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4

.github/workflows/nightly-test-nvidia.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,7 @@ jobs:
440440
python3 scripts/ci/publish_traces.py --traces-dir test/performance_profiles_deepseek_v31
441441
442442
- name: Run DeepSeek v3.2 nightly performance test
443+
if: always()
443444
timeout-minutes: 180
444445
env:
445446
TRACE_BASE_URL: https://raw.githubusercontent.com/sglang-bot/sglang-ci-data/main/traces/${{ github.run_id }}
@@ -459,6 +460,7 @@ jobs:
459460
python3 scripts/ci/publish_traces.py --traces-dir test/performance_profiles_deepseek_v32
460461
461462
- name: Run Kimi-K2-Thinking nightly performance test
463+
if: always()
462464
timeout-minutes: 180
463465
env:
464466
TRACE_BASE_URL: https://raw.githubusercontent.com/sglang-bot/sglang-ci-data/main/traces/${{ github.run_id }}
@@ -478,6 +480,7 @@ jobs:
478480
python3 scripts/ci/publish_traces.py --traces-dir test/performance_profiles_kimi_k2_thinking
479481
480482
- name: Run Qwen3-235B nightly performance test
483+
if: always()
481484
timeout-minutes: 180
482485
env:
483486
TRACE_BASE_URL: https://raw.githubusercontent.com/sglang-bot/sglang-ci-data/main/traces/${{ github.run_id }}
@@ -497,6 +500,7 @@ jobs:
497500
python3 scripts/ci/publish_traces.py --traces-dir test/performance_profiles_qwen3_235b
498501
499502
- name: Run GLM-4.6 nightly performance test
503+
if: always()
500504
timeout-minutes: 180
501505
env:
502506
TRACE_BASE_URL: https://raw.githubusercontent.com/sglang-bot/sglang-ci-data/main/traces/${{ github.run_id }}
@@ -516,6 +520,7 @@ jobs:
516520
python3 scripts/ci/publish_traces.py --traces-dir test/performance_profiles_glm_4_6
517521
518522
- name: Run MiniMax-M2 nightly performance test
523+
if: always()
519524
timeout-minutes: 180
520525
env:
521526
TRACE_BASE_URL: https://raw.githubusercontent.com/sglang-bot/sglang-ci-data/main/traces/${{ github.run_id }}

.github/workflows/pr-test-xeon.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ jobs:
8080
timeout-minutes: 5
8181
run: |
8282
docker exec -w /sglang-checkout/ ci_sglang_xeon \
83-
bash -c "python3 -c 'import torch; import sgl_kernel; assert torch._C._cpu._is_amx_tile_supported(); assert hasattr(torch.ops.sgl_kernel, \"convert_weight_packed\"); '"
83+
bash -c "source /opt/.venv/bin/activate && python3 -c 'import torch; import sgl_kernel; assert torch._C._cpu._is_amx_tile_supported(); assert hasattr(torch.ops.sgl_kernel, \"convert_weight_packed\"); '"
8484
8585
- name: Run unit tests
8686
timeout-minutes: 36
8787
run: |
8888
docker exec -w /sglang-checkout/ ci_sglang_xeon \
89-
bash -c "cd ./test/srt && python3 run_suite.py --suite per-commit-cpu --timeout-per-file 1500"
89+
bash -c "source /opt/.venv/bin/activate && cd ./test/srt && python3 run_suite.py --suite per-commit-cpu --timeout-per-file 1500"
9090
9191
- name: Change permission
9292
timeout-minutes: 2

0 commit comments

Comments
 (0)