We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a28099 commit c2ad990Copy full SHA for c2ad990
ci/build-run-docker.sh
@@ -22,7 +22,7 @@ travis_fold end "fetch.image.${TARGET}"
22
if [ -f "ci/docker/$DOCKER/Dockerfile" ]; then
23
travis_fold start "build.Dockerfile.${DOCKER}"
24
travis_time_start
25
- travis_do_cmd docker build -t "$DOCKER" "ci/docker/$DOCKER/"
+ travis_do_cmd docker build --quiet -t "$DOCKER" "ci/docker/$DOCKER/"
26
travis_time_finish
27
travis_fold end "build.Dockerfile.${DOCKER}"
28
fi
ci/fetch-rust-docker.sh
@@ -41,6 +41,6 @@ if [ -z "$(docker images -q "rust-$TARGET")" ]; then
41
set +e
42
travis_retry curl -y 30 -Y 10 --connect-timeout 30 -f -L -C - -o "$cache" "$url"
43
set -e
44
- docker load -i "$cache"
+ docker load --quiet -i "$cache"
45
docker tag "$digest" "rust-$TARGET"
46
0 commit comments