From: Anthony Green Date: Thu, 25 Mar 2021 14:43:05 +0000 (-0400) Subject: Verbose brew update. X-Git-Tag: upstream/3.4.2~34 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=95ef857d5c6ed15c6c6ba5f8a5b26c0a38b417ab;p=platform%2Fupstream%2Flibffi.git Verbose brew update. --- diff --git a/.travis/install.sh b/.travis/install.sh index 2420245..7e87235 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -2,7 +2,8 @@ set -x if [[ $TRAVIS_OS_NAME != 'linux' ]]; then - brew update > brew-update.log 2>&1 + brew update --verbose + # brew update > brew-update.log 2>&1 # fix an issue with libtool on travis by reinstalling it brew uninstall libtool; brew install libtool dejagnu; @@ -26,7 +27,7 @@ else wget -qO - https://rl.gl/cli/rlgl-linux-s390x.tgz | \ tar --strip-components=2 -xvzf - ./rlgl/rlgl; ;; - *) + *) wget -qO - https://rl.gl/cli/rlgl-linux-amd64.tgz | \ tar --strip-components=2 -xvzf - ./rlgl/rlgl; ;; @@ -36,7 +37,7 @@ else sudo apt-get update case $HOST in mips64el-linux-gnu | sparc64-linux-gnu) - ;; + ;; alpha-linux-gnu | arm32v7-linux-gnu | m68k-linux-gnu | sh4-linux-gnu) sudo apt-get install qemu-user-static ;;