All checks were successful
CI/CD / detect-changes (push) Successful in 4s
CI/CD / test-runners (push) Has been skipped
CI/CD / test-frontend (push) Successful in 6s
CI/CD / test-go-pg (push) Successful in 2m39s
CI/CD / test-sqlite (push) Successful in 2m55s
CI/CD / build-and-deploy (push) Successful in 29s
Co-authored-by: Jeffrey Smith <jasafpro@gmail.com> Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
22 lines
776 B
Bash
Executable File
22 lines
776 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# ═══════════════════════════════════════════════
|
|
# Wait for Armature server to be healthy
|
|
# ═══════════════════════════════════════════════
|
|
# Usage: ./ci/wait-for-healthy.sh [URL] [MAX_RETRIES]
|
|
set -euo pipefail
|
|
|
|
HOST="${1:-http://localhost:3000}"
|
|
MAX_RETRIES="${2:-60}"
|
|
|
|
echo "Waiting for ${HOST} to be healthy..."
|
|
for i in $(seq 1 "$MAX_RETRIES"); do
|
|
if curl -sf --connect-timeout 2 "${HOST}/api/v1/health" -o /dev/null 2>/dev/null; then
|
|
echo "Server healthy after ${i}s"
|
|
exit 0
|
|
fi
|
|
sleep 1
|
|
done
|
|
|
|
echo "Server not healthy after ${MAX_RETRIES}s"
|
|
exit 1
|