You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo"Job $job_id failed preflight: the node is unusable — signaling caller to exclude it and resubmit."
305
+
ci_summary "### :warning: Infrastructure fault — not a code or test failure\n\nNode \`${faulted_node:-unknown}\` could not run MFC (job \`$job_id\`). It is excluded and the job resubmitted elsewhere.\n"
277
306
monitor_success=1
278
307
exit 77
279
308
;;
280
-
78:*)
281
-
echo"Job $job_id skipped: a cluster-wide outage is already recorded."
282
-
monitor_success=1
283
-
exit 78
284
-
;;
285
309
esac
286
310
287
311
# Check if job succeeded
288
312
if [ "$exit_code"!="0:0" ];then
289
313
echo"ERROR: Job $job_id failed with exit code $exit_code"
314
+
# A GPU memory fault explains itself in a block the test harness prints; lift
315
+
# it onto the summary page so the faulting kernel and source line are visible
316
+
# without opening the log at all.
317
+
if grep -q 'GPU fault summary'"$output_file"2>/dev/null;then
318
+
ci_summary "### GPU memory fault\n\n\`\`\`\n$(grep -A6 'GPU fault summary'"$output_file"| head -8 | sed 's/`/'"'"'/g')\n\`\`\`\n"
0 commit comments