aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-12-28 15:11:26 +0100
committercbdev <cb@cbcdn.com>2019-12-28 15:11:26 +0100
commitf7e071444605ec72a6f4577dc7fc63b880d4dd61 (patch)
treeada8200e86e965d4efe09b9da32186e99f5c5930
parent85fc921042efa68b0a34a413dd84bb1ea7a998cc (diff)
downloadmidimonster-f7e071444605ec72a6f4577dc7fc63b880d4dd61.tar.gz
midimonster-f7e071444605ec72a6f4577dc7fc63b880d4dd61.tar.bz2
midimonster-f7e071444605ec72a6f4577dc7fc63b880d4dd61.zip
Fix OSX CI
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index bdaf63a..7db9167 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -180,7 +180,8 @@ install:
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ccache ola lua openssl jack; fi
+# 'brew install' sometimes returns non-zero for some arcane reason. Executing 'true' resets the exit code and allows Travis to continue building...
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ccache ola lua openssl jack; true; fi
# OpenSSL is not a proper install due to some Apple bull, so provide additional locations via the environment...
# Additionally, newer versions of this "recipe" seem to use the name 'openssl@1.1' instead of plain 'openssl' and there seems to be
# no way to programmatically get the link and include paths. Genius! Hardcoding the new version for the time being...