Skip to content

Commit

Permalink
CI: Silence the docker pull progress messages
Browse files Browse the repository at this point in the history
  • Loading branch information
stagnation committed Mar 6, 2024
1 parent 0607594 commit 5a89db8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/test-deployment-docker-compose.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ trap cleanup EXIT

# --- Run remote execution ---
rm -rf volumes/storage-*
./run.sh -d
./run.sh --quiet-pull --detach
# Wait for queues for all worker instance types to be available.
docker compose up --wait frontend scheduler
while : ; do
instance_name_prefixes=$(grpcurl --plaintext localhost:8984 buildbarn.buildqueuestate.BuildQueueState.ListPlatformQueues |
jq -r '(.platformQueues // []) | map(.name.instanceNamePrefix) | sort | join(",")')
[ "$instance_name_prefixes" != "fuse,hardlinking" ] || break
test "$instance_name_prefixes" != "fuse,hardlinking" || break
sleep 1
done

Expand Down

0 comments on commit 5a89db8

Please sign in to comment.