From bc2fca13cf7682e6d6ce7ef6c54245c0f50b5ffb Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Mon, 13 Aug 2018 21:04:56 +0200 Subject: .travis.yml: do not run brew upgrade This addresses issue with travis compilation on MacOSX. Signed-off-by: Nikos Mavrogiannopoulos --- .travis.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4afe4ac5da..72727c30bb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,8 +18,12 @@ before_install: - git submodule update --init - if [[ "$TRAVIS_OS_NAME" = "osx" ]]; then brew update; - brew install autoconf automake autogen libtool nettle valgrind p11-kit libtasn1 gettext; - brew upgrade nettle p11-kit libtasn1 gettext; + for pkg in autoconf automake autogen libtool nettle p11-kit libtasn1 gettext;do + brew install $pkg || true; + done; + for pkg in nettle p11-kit libtasn1;do + brew upgrade $pkg || true; + done; fi script: -- cgit v1.2.1