From: George Thessalonikefs Date: Thu, 27 Feb 2020 17:11:25 +0000 (+0100) Subject: - Provide openssl location for osx travis build. X-Git-Tag: 1.11.0rc1~125^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6476a11189fc253c434897395ab43a20da235b26;p=thirdparty%2Funbound.git - Provide openssl location for osx travis build. --- 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