[CI] Fix 4-GPU test timeout by using 3 partitions (#14287)

This commit is contained in:
alisonshao
2025-12-02 00:47:26 -08:00
committed by GitHub
parent 9c9d7091cb
commit e0ec42c710

View File

@@ -563,7 +563,7 @@ jobs:
strategy:
fail-fast: false
matrix:
part: [0, 1]
part: [0, 1, 2]
steps:
- name: Checkout code
uses: actions/checkout@v4
@@ -584,7 +584,7 @@ jobs:
timeout-minutes: 20
run: |
cd test/srt
python3 run_suite.py --suite per-commit-4-gpu --auto-partition-id ${{ matrix.part }} --auto-partition-size 2
python3 run_suite.py --suite per-commit-4-gpu --auto-partition-id ${{ matrix.part }} --auto-partition-size 3
unit-test-backend-8-gpu-h200:
needs: [check-changes, call-gate, unit-test-backend-2-gpu]