Skip to content

Commit

Permalink
ci: Make docker quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
tesuji committed Apr 20, 2019
1 parent 3a28099 commit c2ad990
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/build-run-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ travis_fold end "fetch.image.${TARGET}"
if [ -f "ci/docker/$DOCKER/Dockerfile" ]; then
travis_fold start "build.Dockerfile.${DOCKER}"
travis_time_start
travis_do_cmd docker build -t "$DOCKER" "ci/docker/$DOCKER/"
travis_do_cmd docker build --quiet -t "$DOCKER" "ci/docker/$DOCKER/"
travis_time_finish
travis_fold end "build.Dockerfile.${DOCKER}"
fi
Expand Down
2 changes: 1 addition & 1 deletion ci/fetch-rust-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ if [ -z "$(docker images -q "rust-$TARGET")" ]; then
set +e
travis_retry curl -y 30 -Y 10 --connect-timeout 30 -f -L -C - -o "$cache" "$url"
set -e
docker load -i "$cache"
docker load --quiet -i "$cache"
docker tag "$digest" "rust-$TARGET"
fi

0 comments on commit c2ad990

Please sign in to comment.