fix: extend CI health check timeout from 15s to 90s (6 retries × 15s)
This commit is contained in:
@@ -83,14 +83,16 @@ jobs:
|
||||
|
||||
- name: Wait for CI site to be ready
|
||||
run: |
|
||||
for i in {1..15}; do
|
||||
if docker ps --filter name=euchre-camp-ci --format '{{.Status}}' | grep -q Up; then
|
||||
echo "CI site container is running"
|
||||
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 2
|
||||
sleep 15
|
||||
done
|
||||
echo "CI site container failed to start"
|
||||
echo "CI site failed to become healthy after 90 seconds"
|
||||
docker compose -f /apps/euchre_camp_ci/docker-compose.yml logs app
|
||||
exit 1
|
||||
docker compose -f /apps/euchre_camp_ci/docker-compose.yml logs app
|
||||
exit 1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user