Skip to content

Commit 4f6757b

Browse files
committed
CI: Silence the docker pull progress messages
1 parent 0607594 commit 4f6757b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/test-deployment-docker-compose.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ trap cleanup EXIT
1818

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

0 commit comments

Comments
 (0)