File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -53,18 +53,21 @@ jobs:
5353 # Decide which matrix entries to include based on event type
5454 # Runs ROCm only for push tag OR when PR label gets triggered
5555 if [[ "$IS_8GPU_TAG" == "true" || "$TRIGGERED_8GPU_LABEL" == "true" ]]; then
56+ echo "Runs ROCm only for push tag OR when PR label gets triggered"
5657 cat > matrix.json <<JSON
5758 {"include": [$ROCM_MATRIX]}
5859 JSON
5960
6061 # Runs CUDA and ROCm for normal PR (if PR label is present) OR for push to main, cron schedule
6162 elif [[ ("$IS_MAIN_PUSH" == "true" || "$IS_SCHEDULE" == "true") ]]; then
63+ echo "Runs CUDA and ROCm for normal PR (if PR label is present) OR for push to main, cron schedule"
6264 cat > matrix.json <<JSON
6365 {"include": [$CUDA_MATRIX,$ROCM_MATRIX]}
6466 JSON
6567
6668 # Runs CUDA only as default (includes normal PR, if PR label is NOT present)
6769 else
70+ echo "Runs CUDA only as default (includes normal PR, if PR label is NOT present)"
6871 cat > matrix.json <<JSON
6972 {"include": [$CUDA_MATRIX]}
7073 JSON
You can’t perform that action at this time.
0 commit comments