From ef9ab9b45a7fcb5a9a01468d4718adcc5c798b25 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Fri, 30 Jun 2017 10:43:20 +0200 Subject: .travis.yml: do not fail on brew install failures brew install seems to fail on several occasions when a newer package is available than the installed. Ignore those errors rather than failing build. Signed-off-by: Nikos Mavrogiannopoulos --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e7e0272f49..18b96c4e90 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,7 @@ notifications: before_install: - git submodule update --init - if [[ "$TRAVIS_OS_NAME" = "osx" ]]; then - brew install autoconf automake autogen libtool nettle valgrind p11-kit libtasn1 gettext; + brew install autoconf automake autogen libtool nettle valgrind p11-kit libtasn1 gettext || true; fi script: -- cgit v1.2.1