ci: add check remote buildkitd step in e2e tests

Signed-off-by: Justin Chadwell <me@jedevc.com>
This commit is contained in:
Justin Chadwell 2022-05-05 11:31:26 +01:00
parent 27bdbea410
commit 79ba92b7f8

View File

@ -142,8 +142,25 @@ jobs:
docker run -d --privileged \
--name=remote-buildkit \
-p 1234:1234 \
--health-cmd "buildctl debug workers" \
--health-interval 1s \
${{ matrix.buildkit }} \
--addr unix:///run/buildkit/buildkitd.sock \
--addr tcp://0.0.0.0:1234
-
name: Check remote buildkitd
if: matrix.driver == 'remote'
run: |
try=0
max=10
until [ "$(docker container inspect remote-buildkit --format '{{ .State.Health.Status }}')" = "healthy" ]; do
if [ $try -gt $max ]; then
echo >&2 "healthcheck failed after $max trials"
exit 1
fi
sleep $(awk "BEGIN{print (100 + $try * 20) * 0.002}")
try=$(expr $try + 1)
done
-
name: Test
run: |