From 3ec58b8e0bbe98c2113cc1816365e69a53556ecb Mon Sep 17 00:00:00 2001 From: kristopher tate Date: Tue, 6 Nov 2018 02:01:40 +0900 Subject: [PATCH] ci/azure: set wget to non-verbose mode to make logs easier to read; Over 5000 lines of wget download process updates are stored to the logs: `2018-11-05T15:12:23.7724039Z 296000K .......... .......... .......... .......... .......... 99% 83.9M 0s` --- ci/azure/macos_script | 2 +- ci/azure/windows_install | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/azure/macos_script b/ci/azure/macos_script index 67e42d0e9..239c35426 100755 --- a/ci/azure/macos_script +++ b/ci/azure/macos_script @@ -22,7 +22,7 @@ mkdir $TMPDIR cd $HOME HAVE_CACHE="true" -wget "https://ziglang.org/builds/$CACHE_BASENAME.tar.xz" || HAVE_CACHE="false" +wget -nv "https://ziglang.org/builds/$CACHE_BASENAME.tar.xz" || HAVE_CACHE="false" if [ "${HAVE_CACHE}" = "true" ]; then tar xf "$CACHE_BASENAME.tar.xz" else diff --git a/ci/azure/windows_install b/ci/azure/windows_install index 345896cdb..e575828f2 100755 --- a/ci/azure/windows_install +++ b/ci/azure/windows_install @@ -5,5 +5,5 @@ set -e pacman -S --needed --noconfirm wget zip python3-pip pip install s3cmd -wget "https://ziglang.org/deps/llvm%2bclang-7.0.0-win64-msvc-release.tar.xz" +wget -nv "https://ziglang.org/deps/llvm%2bclang-7.0.0-win64-msvc-release.tar.xz" tar xf llvm+clang-7.0.0-win64-msvc-release.tar.xz