tests: it make take time for Forgejo to come up

pull/329/head
Earl Warren 2024-11-12 14:08:44 +01:00
parent c178d44f69
commit b4aba5f688
No known key found for this signature in database
GPG Key ID: 0579CB2928A78A00
1 changed files with 2 additions and 2 deletions

View File

@ -54,8 +54,8 @@ jobs:
- name: check the forgejo server is responding - name: check the forgejo server is responding
run: | run: |
apt-get update -qq apt-get update -qq
apt-get install -y -qq jq curl apt-get install -y -qq jq curl retry
test $FORGEJO_ADMIN_USER = $(curl -sS http://$FORGEJO_ADMIN_USER:$FORGEJO_ADMIN_PASSWORD@$FORGEJO_HOST_PORT/api/v1/user | jq --raw-output .login) retry --delay=1 --times=60 bash -c 'test $FORGEJO_ADMIN_USER = $(curl -sS http://$FORGEJO_ADMIN_USER:$FORGEJO_ADMIN_PASSWORD@$FORGEJO_HOST_PORT/api/v1/user | jq --raw-output .login)'
- run: make FORGEJO_URL=http://$FORGEJO_HOST_PORT test - run: make FORGEJO_URL=http://$FORGEJO_HOST_PORT test