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
fix(ci): add output-stall watchdog to bst build retry loop
A full buildbarn pod-restart wave black-holes the bst gRPC stream with
no error surfaced, so the NOT_FOUND hotfix never fires and the client
hangs silently until the step timeout. Kill the named bst container
after 65 min of total output silence and let the existing retry loop
resume from the warm CAS.
Assisted-by: Claude Fable 5 via GitHub Copilot
echo "::error::bst build failed after ${attempt} attempts (rc=${rc})"
446
472
exit "$rc"
447
473
fi
448
-
if grep -qE "Operation with name .* not found|Failed contacting remote execution server|Stream removed|DEADLINE_EXCEEDED|Failed to contact remote execution endpoint" /tmp/bst-build-out.txt; then
474
+
if grep -qE "STALL_WATCHDOG|Operation with name .* not found|Failed contacting remote execution server|Stream removed|DEADLINE_EXCEEDED|Failed to contact remote execution endpoint" /tmp/bst-build-out.txt; then
0 commit comments