mirror of
https://github.com/docker/buildx.git
synced 2024-11-22 15:37:16 +08:00
ci: add check remote buildkitd step in e2e tests
Signed-off-by: Justin Chadwell <me@jedevc.com>
This commit is contained in:
parent
27bdbea410
commit
79ba92b7f8
17
.github/workflows/e2e.yml
vendored
17
.github/workflows/e2e.yml
vendored
@ -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: |
|
||||
|
Loading…
Reference in New Issue
Block a user