From 6476a11189fc253c434897395ab43a20da235b26 Mon Sep 17 00:00:00 2001 From: George Thessalonikefs Date: Thu, 27 Feb 2020 18:11:25 +0100 Subject: [PATCH] - Provide openssl location for osx travis build. --- .travis.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 607e440d5..4b0f1da53 100644 --- a/.travis.yml +++ b/.travis.yml @@ -71,13 +71,6 @@ jobs: arch: ppc64le dist: bionic -before_install: - - | - if [ "$TRAVIS_OS_NAME" = "osx" ]; then - brew update - brew install openssl - fi - script: - | if [ "$TEST_UBSAN" = "yes" ]; then @@ -86,6 +79,8 @@ script: elif [ "$TEST_ASAN" = "yes" ]; then export CFLAGS="-DNDEBUG -g2 -O3 -fsanitize=address" ./configure + elif [ "$TRAVIS_OS_NAME" = "osx" ]; then + ./configure --enable-debug --disable-flto --with-ssl=/usr/local/opt/openssl/ else ./configure --enable-debug --disable-flto fi -- 2.47.3