fix: extend CI health check timeout from 15s to 90s (6 retries × 15s)
Pull Request / unit-tests (pull_request) Successful in 55s
Pull Request / analyze-bump-type (pull_request) Successful in 30s
Pull Request / build-and-deploy-ci (pull_request) Failing after 3m57s

This commit is contained in:
2026-05-18 16:55:45 -07:00
parent baeab0fbe5
commit b32dfe100d
4 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -81,14 +81,14 @@ jobs:
- name: Wait for CI site to be healthy
run: |
for i in {1..30}; do
for i in {1..6}; do
if curl -sf https://euchre-ci.notsosm.art/api/health > /dev/null 2>&1; then
echo "CI site is healthy"
exit 0
fi
sleep 0.5
sleep 15
done
echo "CI site failed to become healthy after 15 seconds"
echo "CI site failed to become healthy after 90 seconds"
docker compose -f /apps/euchre_camp_ci/docker-compose.yml logs app
exit 1