Skip to content
Merged
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
30 changes: 15 additions & 15 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -308,23 +308,23 @@ jobs:
echo "All benchmark tests completed!"

# =============================================== multimodal_gen ====================================================
multimodal-gen-test:
needs: [check-changes]
if: needs.check-changes.outputs.multimodal_gen == 'true'
runs-on: 1-gpu-runner
steps:
- name: Checkout code
uses: actions/checkout@v4
# multimodal-gen-test:
# needs: [check-changes]
# if: needs.check-changes.outputs.multimodal_gen == 'true'
# runs-on: 1-gpu-runner
# steps:
# - name: Checkout code
# uses: actions/checkout@v4

- name: Install dependencies
run: |
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} bash scripts/ci/ci_install_dependency.sh diffusion
# - name: Install dependencies
# run: |
# CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} bash scripts/ci/ci_install_dependency.sh diffusion

- name: Run diffusion server tests
timeout-minutes: 60
run: |
cd python
pytest -s -v --log-cli-level=INFO sglang/multimodal_gen/test/server/test_server_performance.py
# - name: Run diffusion server tests
# timeout-minutes: 60
# run: |
# cd python
# pytest -s -v --log-cli-level=INFO sglang/multimodal_gen/test/server/test_server_performance.py

# Adding a single CUDA13 smoke test to verify that the kernel builds and runs
# TODO: Add back this test when it can pass on CI
Expand Down
Loading