Skip to content

Commit fab557f

Browse files
committed
DEBUG
1 parent 917886d commit fab557f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/set-matrix.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)