diff options
author | Earl Warren <contact@earl-warren.org> | 2024-11-16 09:38:48 +0100 |
---|---|---|
committer | Earl Warren <contact@earl-warren.org> | 2024-11-16 09:38:48 +0100 |
commit | 0876532ebef21a7fd17b583570c0c962e9ea58c9 (patch) | |
tree | 3a5d9488cee407b1293c2d9c754f270707171f7f /.forgejo/workflows/test.yml | |
parent | Merge pull request 'Update golang packages to v1.23 (minor)' (#330) from reno... (diff) | |
download | forgejo-runner-0876532ebef21a7fd17b583570c0c962e9ea58c9.tar.xz forgejo-runner-0876532ebef21a7fd17b583570c0c962e9ea58c9.zip |
chore(ci): wait for the Forgejo instance to start
Do not try to access Forgejo before the 10 second delay imposed by
the script creating the user.
Upgrade Forgejo to use a recent version.
Diffstat (limited to '')
-rw-r--r-- | .forgejo/workflows/test.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 42dd972..2b0a019 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -22,7 +22,7 @@ jobs: services: forgejo: - image: codeberg.org/forgejo/forgejo:1.21 + image: codeberg.org/forgejo/forgejo:9 env: FORGEJO__security__INSTALL_LOCK: "true" FORGEJO__log__LEVEL: "debug" @@ -55,7 +55,9 @@ jobs: run: | apt-get update -qq apt-get install -y -qq jq curl retry - 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)' + sleep 10 # matches the sleep 10 in the bootstrap of the Forgejo instance + # in case of a slow machine, give it time to bootstrap + retry --delay=10 --times=6 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 |