ci: unify PR test suite naming#21187
Merged
merrymercy merged 1 commit intomainfrom Mar 23, 2026
Merged
Conversation
Rename CI job/suite identifiers to a consistent pattern:
stage-{a|b|c}-test-{N}-gpu-{small|large}[-amd|...] and stage-a-test-cpu.
- Workflows (pr-test, AMD): job IDs, wait-for-jobs, matrix inputs
- test/run_suite.py: PER_COMMIT_SUITES and related mappings
- Registered tests: register_*_ci(suite=...) decorators
- CI helpers: slash_command_handler, wait-for-jobs action
- Docs: test/README, write-sglang-test skill, unit README
Also rename stage-c-test-deepep-4-gpu to stage-c-test-deepep-4-gpu-h100
for symmetry with other stage-c GPU-qualified names.
Made-with: Cursor
Contributor
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
Contributor
Author
|
/tag-and-rerun-ci |
0-693
pushed a commit
to 0-693/sglang
that referenced
this pull request
Mar 25, 2026
JustinTong0323
pushed a commit
to JustinTong0323/sglang
that referenced
this pull request
Apr 7, 2026
yhyang201
pushed a commit
to yhyang201/sglang
that referenced
this pull request
Apr 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This change renames CI job IDs and registered-test
suite=strings to a single, predictable pattern so stage / GPU count / size are ordered consistently.Naming pattern
stage-b-test-large-1-gpu,stage-a-test-small-1-gpu,stage-a-cpu-onlystage-{a|b|c}-test-{N}-gpu-{small|large|h200|b200}(with existing suffixes such as-amd,-mi35x, etc. preserved), CPU suite asstage-a-test-cpuExamples:
stage-a-cpu-onlystage-a-test-cpustage-a-test-small-1-gpustage-a-test-1-gpu-smallstage-b-test-small-1-gpustage-b-test-1-gpu-smallstage-b-test-large-1-gpustage-b-test-1-gpu-largestage-b-test-large-2-gpustage-b-test-2-gpu-largestage-*-test-small-1-gpu-amdstage-*-test-1-gpu-small-amdstage-c-test-deepep-4-gpustage-c-test-deepep-4-gpu-h100(aligned with other stage-c GPU-qualified names)Files touched (~283)
pr-test.yml,pr-test-amd.yml,pr-test-amd-rocm720.yml,wait-for-jobsactiontest/run_suite.py:PER_COMMIT_SUITESand suite listsregister_*_ci(..., suite=...)decoratorsscripts/ci/utils/slash_command_handler.py: rerun-stage allowlists and runner mappingstest/README.md,.claude/skills/write-sglang-test/SKILL.md,test/registered/unit/README.mdNo behavioral change to test logic; identifiers and wiring only.
Made with Cursor