From a24fb1e5f3ced4dd634627e6da2b87a37c9437da Mon Sep 17 00:00:00 2001 From: Helge Jung <hej@c3pb.de> Date: Sat, 23 Sep 2023 15:05:15 +0200 Subject: [PATCH] GitLab CI: use bookworm for node stuff, too --- .gitlab-ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b980833b2..239ff4c52 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -60,7 +60,7 @@ sanitycheck: - tags build_css: - image: node:current-buster + image: node:current-bookworm stage: prepare needs: [] script: @@ -180,8 +180,7 @@ test_internals: alias: hubapp before_script: - pip3 install httpie requests "urllib3<2" - - ping -c 2 dbserver || true - - ping -c 2 hubapp || true + - echo "testing on: $BASE_URL" - timeout 30 bash -c "while timeout -k 3 2 http --check-status GET ${BASE_URL}/.well-known/version; rc=\$?; [ \$rc = 124 -o \$rc = 502 ]; do sleep 1; done; if [ \$rc != 0 ]; then exit \$rc; fi" - http --timeout 2.5 --check-status GET ${BASE_URL}/.well-known/health only: -- GitLab