CI: stronger docker retry (5x60s, prune cache, pull, push retry).
CI / test (push) Successful in 22m8s

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-10 14:44:50 +03:00
parent 63cb9e7e02
commit 755aba02ac
2 changed files with 15 additions and 9 deletions
+1
View File
@@ -28,6 +28,7 @@ while true; do
exit "${code}"
fi
echo "== attempt ${attempt} failed (exit ${code}), retry in ${WAIT}s..."
docker buildx prune -f >/dev/null 2>&1 || true
sleep "${WAIT}"
attempt=$((attempt + 1))
done