Commit 3ec58b8e0b

kristopher tate <kris.tate+github@gmail.com>
2018-11-05 18:01:40
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`
1 parent 973e0ab
Changed files (2)
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
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