aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-08-22 22:28:25 +0200
committercbdev <cb@cbcdn.com>2019-08-22 22:28:25 +0200
commit6464a418f2bf13c8c04b10abf5ebdc4c95aae861 (patch)
tree8f8a662508e416a24bbf5af8b1e747a661ff6119 /.travis.yml
parentc99b43353fdc9a1ee78c4bcdf4cac482a9928a66 (diff)
downloadmidimonster-6464a418f2bf13c8c04b10abf5ebdc4c95aae861.tar.gz
midimonster-6464a418f2bf13c8c04b10abf5ebdc4c95aae861.tar.bz2
midimonster-6464a418f2bf13c8c04b10abf5ebdc4c95aae861.zip
Try to fix failing build by providing additional hints to MacOS
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 305dc61..9f2034c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -164,6 +164,9 @@ install:
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ccache ola lua openssl; fi
+# OpenSSL is not a proper install due to some Apple bull, so provide additional locations via the environment...
+ - export CPPFLAGS="$CPPFLAGS -I/usr/local/opt/openssl/include"
+ - export LDFLAGS="$LDFLAGS -L/usr/local/opt/openssl/lib"
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then PATH=/usr/local/opt/ccache/libexec:$PATH; fi # Use ccache on Mac too
#Coverity doesn't work with g++ 5 or 6, so only upgrade to g++ 4.9 for that
- if [ "$TRAVIS_OS_NAME" == "linux" -a \( "$TASK" = "compile" -o "$TASK" = "sanitize" \) -a "$CC" = "gcc" ]; then export CC="ccache gcc-8"; export CXX="ccache g++-8"; fi