Unverified Commit c6f12f64 authored by Pavithra Vijayakrishnan's avatar Pavithra Vijayakrishnan Committed by GitHub
Browse files

ci: Add RUN_SGLANG to CI variables (#1928)


Signed-off-by: default avatarPavithra Vijayakrishnan <160681768+pvijayakrish@users.noreply.github.com>
parent 6a69ef4f
...@@ -47,8 +47,8 @@ jobs: ...@@ -47,8 +47,8 @@ jobs:
filters: | filters: |
vllm: vllm:
- 'container/Dockerfile.vllm' - 'container/Dockerfile.vllm'
- 'container/Dockerfile.vllm_nixl' - 'container/Dockerfile.vllm_v1'
- 'examples/python/llm/**' - 'examples/vllm/**'
- 'examples/python_rs/llm/**' - 'examples/python_rs/llm/**'
- 'container/deps/requirements.vllm.txt' - 'container/deps/requirements.vllm.txt'
- 'container/deps/vllm/**' - 'container/deps/vllm/**'
...@@ -62,6 +62,11 @@ jobs: ...@@ -62,6 +62,11 @@ jobs:
- 'tests/serve/test_trtllm.py' - 'tests/serve/test_trtllm.py'
sdk: sdk:
- 'deploy/**' - 'deploy/**'
sglang:
- 'container/Dockerfile.sglang'
- 'container/Dockerfile.sglang-deepep'
- 'examples/sglang/**'
- 'container/build.sh'
- name: Check if Validation Workflow has run - name: Check if Validation Workflow has run
id: check_workflow id: check_workflow
uses: actions/github-script@v6 uses: actions/github-script@v6
...@@ -104,6 +109,10 @@ jobs: ...@@ -104,6 +109,10 @@ jobs:
ci_variables["RUN_TENSORRTLLM"]="true" ci_variables["RUN_TENSORRTLLM"]="true"
fi fi
if [ "${{ steps.src_changes.outputs.sglang }}" == "true" ]; then
ci_variables["RUN_SGLANG"]="true"
fi
if [ "${{ steps.src_changes.outputs.sdk }}" == "true" ]; then if [ "${{ steps.src_changes.outputs.sdk }}" == "true" ]; then
ci_variables["RUN_SDK_CI"]="true" ci_variables["RUN_SDK_CI"]="true"
fi fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment