diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2018-08-13 21:04:56 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2018-08-13 21:30:25 +0200 |
commit | bc2fca13cf7682e6d6ce7ef6c54245c0f50b5ffb (patch) | |
tree | f5c244b14869872f7b8d49dcdbdae2af4610fff1 | |
parent | 72d654d7e2ee4c6e3232bc6142b14ff3010b99a4 (diff) | |
download | gnutls-bc2fca13cf7682e6d6ce7ef6c54245c0f50b5ffb.tar.gz |
.travis.yml: do not run brew upgrade
This addresses issue with travis compilation on MacOSX.
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
-rw-r--r-- | .travis.yml | 8 |
1 files 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: |