modified wait
This commit is contained in:
parent
974f259804
commit
ee6c695d33
1 changed files with 12 additions and 5 deletions
|
@ -22,14 +22,21 @@ jobs:
|
|||
- name: Wait for service to be healthy
|
||||
run: |
|
||||
for i in {1..10}; do
|
||||
STATUS=$(curl -o /dev/null -s -w "%{http_code}" http://localhost:26400/)
|
||||
echo "Checking website availability (Attempt $i)...";
|
||||
STATUS=$(curl -o /dev/null -s -w "%{http_code}" http://localhost:26400/) || true;
|
||||
if [ "$STATUS" -eq 200 ]; then
|
||||
echo "Website is up with status 200!"
|
||||
break
|
||||
echo "Website is up with status 200!";
|
||||
break;
|
||||
elif [ "$STATUS" -eq 000 ]; then
|
||||
echo "Could not connect to website. Curl returned status: $STATUS";
|
||||
else
|
||||
echo "Website not ready yet, status: $STATUS"
|
||||
echo "Website not ready yet, status: $STATUS";
|
||||
fi
|
||||
sleep 5
|
||||
if [ "$i" -eq 10 ]; then
|
||||
echo "Website did not become ready in time. Exiting...";
|
||||
exit 1;
|
||||
fi
|
||||
sleep 5;
|
||||
done
|
||||
- name: Checkout repository
|
||||
uses: https://code.forgejo.org/actions/checkout@v3
|
||||
|
|
Loading…
Reference in a new issue