aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-12-05 21:07:56 -0500
committerJack Lloyd <[email protected]>2016-12-05 21:07:56 -0500
commita1b4f0299ade80d430bc5f1623a3294a897caa0b (patch)
treed78d3c4c4fe3038e2ab473388d30d9f97c3694a9 /src
parent61c4932f27c060a691ddc04fb75d227a1e8365dd (diff)
Skip OpenSSL on OS X Travis builds.
OpenSSL library suddenly became unavailable on Travis OS X images causing build fauilres. Not clear if we should install it via homebrew instead, or what. For now disabling it to get CI green.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/scripts/ci/travis/build.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/scripts/ci/travis/build.sh b/src/scripts/ci/travis/build.sh
index f5de4bf32..0accbc3db 100755
--- a/src/scripts/ci/travis/build.sh
+++ b/src/scripts/ci/travis/build.sh
@@ -57,8 +57,9 @@ elif [ "${BUILD_MODE:0:5}" != "cross" ]; then
TEST_FLAGS=(--run-online-tests --pkcs11-lib=/tmp/softhsm/lib/softhsm/libsofthsm2.so)
fi
- # Avoid OpenSSL when using dynamic checkers...
- if [ "$BUILD_MODE" != "sanitizer" ] && [ "$BUILD_MODE" != "valgrind" ]; then
+ # Avoid OpenSSL when using dynamic checkers, or on OS X where it sporadically
+ # is not installed on the CI image
+ if [ "$TRAVIS_OS_NAME" != "osx" ] && [ "$BUILD_MODE" != "sanitizer" ] && [ "$BUILD_MODE" != "valgrind" ]; then
CFG_FLAGS+=(--with-openssl)
fi
fi