Skip to content

Commit c6f12f6

Browse files
authored
ci: Add RUN_SGLANG to CI variables (#1928)
Signed-off-by: Pavithra Vijayakrishnan <160681768+pvijayakrish@users.noreply.github.com>
1 parent 6a69ef4 commit c6f12f6

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/trigger_ci.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
filters: |
4848
vllm:
4949
- 'container/Dockerfile.vllm'
50-
- 'container/Dockerfile.vllm_nixl'
51-
- 'examples/python/llm/**'
50+
- 'container/Dockerfile.vllm_v1'
51+
- 'examples/vllm/**'
5252
- 'examples/python_rs/llm/**'
5353
- 'container/deps/requirements.vllm.txt'
5454
- 'container/deps/vllm/**'
@@ -62,6 +62,11 @@ jobs:
6262
- 'tests/serve/test_trtllm.py'
6363
sdk:
6464
- 'deploy/**'
65+
sglang:
66+
- 'container/Dockerfile.sglang'
67+
- 'container/Dockerfile.sglang-deepep'
68+
- 'examples/sglang/**'
69+
- 'container/build.sh'
6570
- name: Check if Validation Workflow has run
6671
id: check_workflow
6772
uses: actions/github-script@v6
@@ -104,6 +109,10 @@ jobs:
104109
ci_variables["RUN_TENSORRTLLM"]="true"
105110
fi
106111
112+
if [ "${{ steps.src_changes.outputs.sglang }}" == "true" ]; then
113+
ci_variables["RUN_SGLANG"]="true"
114+
fi
115+
107116
if [ "${{ steps.src_changes.outputs.sdk }}" == "true" ]; then
108117
ci_variables["RUN_SDK_CI"]="true"
109118
fi

0 commit comments

Comments
 (0)