[Tiny Fix] Fix IS_BLACKWELL env var empty string warning in rerun-ut workflow (#20957)

This commit is contained in:
Liangsheng Yin
2026-03-19 17:24:35 -07:00
committed by GitHub
parent 2b53e660de
commit 8d22efdeea

View File

@@ -48,7 +48,7 @@ jobs:
timeout-minutes: 120
env:
RUNNER_LABELS: ${{ inputs.runner_label }}
IS_BLACKWELL: ${{ (inputs.runner_label == '1-gpu-5090' || contains(inputs.runner_label, 'b200')) && '1' || '' }}
IS_BLACKWELL: ${{ (inputs.runner_label == '1-gpu-5090' || contains(inputs.runner_label, 'b200')) && '1' || '0' }}
SGLANG_CI_RDMA_ALL_DEVICES: ${{ inputs.runner_label == '8-gpu-h20' && 'mlx5_1,mlx5_2,mlx5_3,mlx5_4' || '' }}
steps:
- name: Checkout code