Merge pull request #1094 from jedevc/remote-e2e-flake

Attempt to solve some flakiness in the remote driver ci
This commit is contained in:
CrazyMax 2022-05-06 10:40:40 +02:00 committed by GitHub
commit 43968ffa68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

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: |