Add failfast flag to rerun-test workflow (#22141)

This commit is contained in:
Liangsheng Yin
2026-04-05 00:24:50 -07:00
committed by GitHub
parent edee9ae929
commit bb9e058f5b
+2 -2
View File
@@ -87,7 +87,7 @@ jobs:
echo "${{ inputs.test_command }}" | while IFS= read -r cmd; do
[ -z "$cmd" ] && continue
echo ">>> Running: python3 $cmd"
python3 $cmd || exit 1
python3 $cmd -f || exit 1
done
- uses: ./.github/actions/upload-cuda-coredumps
@@ -132,5 +132,5 @@ jobs:
echo "${{ inputs.test_command }}" | while IFS= read -r cmd; do
[ -z "$cmd" ] && continue
echo ">>> Running: python3 $cmd"
python3 $cmd || exit 1
python3 $cmd -f || exit 1
done