Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/pr-test-amd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,19 @@ jobs:
sgl_kernel:
- "sgl-kernel/**"
- ".github/workflows/pr-test-amd.yml"
# Exclude non-ROCm platform configs and code
- "!sgl-kernel/pyproject_cpu.toml"
- "!sgl-kernel/pyproject.toml"
- "!sgl-kernel/pyproject_musa.toml"
- "!sgl-kernel/setup_musa.py"
- "!sgl-kernel/csrc/cpu/**"
# Exclude documentation and non-functional files
- "!sgl-kernel/README.md"
- "!sgl-kernel/LICENSE"
- "!sgl-kernel/THIRDPARTYNOTICES.txt"
- "!sgl-kernel/.clang-format"
- "!sgl-kernel/analyze_whl_kernel_sizes.py"
- "!sgl-kernel/rename_wheels.sh"
multimodal_gen:
- "python/sglang/multimodal_gen/**"
- "python/sglang/cli/**"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/pr-test-xeon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,12 @@ jobs:
- "python/sglang/!(multimodal_gen)/**"
- "python/pyproject_cpu.toml"
- "test/**"
- "sgl-kernel/**"
# Only trigger on CPU-specific sgl-kernel changes
- "sgl-kernel/pyproject_cpu.toml"
- "sgl-kernel/csrc/cpu/**"
- "sgl-kernel/python/**"
- "sgl-kernel/include/**"
- "sgl-kernel/tests/**"
- ".github/workflows/pr-test-xeon.yml"
- "docker/xeon.Dockerfile"

Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/pr-test-xpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,20 @@ jobs:
- "python/pyproject_xpu.toml"
- "test/**"
- "sgl-kernel/**"
# Exclude non-XPU platform configs and code
- "!sgl-kernel/pyproject_cpu.toml"
- "!sgl-kernel/pyproject_rocm.toml"
- "!sgl-kernel/pyproject_musa.toml"
- "!sgl-kernel/setup_rocm.py"
- "!sgl-kernel/setup_musa.py"
- "!sgl-kernel/csrc/cpu/**"
# Exclude documentation and non-functional files
- "!sgl-kernel/README.md"
- "!sgl-kernel/LICENSE"
- "!sgl-kernel/THIRDPARTYNOTICES.txt"
- "!sgl-kernel/.clang-format"
- "!sgl-kernel/analyze_whl_kernel_sizes.py"
- "!sgl-kernel/rename_wheels.sh"
- ".github/workflows/pr-test-xpu.yml"
- "docker/xpu.Dockerfile"

Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,20 @@ jobs:
- ".github/workflows/pr-test.yml"
sgl_kernel:
- "sgl-kernel/**"
# Exclude non-CUDA platform configs and code
- "!sgl-kernel/pyproject_cpu.toml"
- "!sgl-kernel/pyproject_rocm.toml"
- "!sgl-kernel/pyproject_musa.toml"
- "!sgl-kernel/setup_rocm.py"
- "!sgl-kernel/setup_musa.py"
- "!sgl-kernel/csrc/cpu/**"
# Exclude documentation and non-functional files
- "!sgl-kernel/README.md"
- "!sgl-kernel/LICENSE"
- "!sgl-kernel/THIRDPARTYNOTICES.txt"
- "!sgl-kernel/.clang-format"
- "!sgl-kernel/analyze_whl_kernel_sizes.py"
- "!sgl-kernel/rename_wheels.sh"
jit_kernel:
- "python/sglang/jit_kernel/**"
- "python/pyproject.toml"
Expand Down
Loading