Compare commits

...

1 Commits

Author SHA1 Message Date
57c7afcdb4 ci: emit warnings on retry attempts in emscripten build 2025-07-28 20:25:13 -05:00

View File

@@ -129,10 +129,10 @@ jobs:
# Check if the failure was due to the specific hash error
if grep -q "emcc: error: Unexpected hash:" /tmp/build_output.log; then
echo "Detected 'emcc: error: Unexpected hash:' error - will retry"
echo "::warning::Detected 'emcc: error: Unexpected hash:' error - will retry (attempt $attempt of $MAX_RETRIES)"
if [ $attempt -eq $MAX_RETRIES ]; then
echo "All retry attempts failed. Exiting with error."
echo "::error::All retry attempts failed. Exiting with error."
exit 1
fi