]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Provide openssl location for osx travis build.
authorGeorge Thessalonikefs <george@nlnetlabs.nl>
Thu, 27 Feb 2020 17:11:25 +0000 (18:11 +0100)
committerGeorge Thessalonikefs <george@nlnetlabs.nl>
Thu, 27 Feb 2020 17:11:25 +0000 (18:11 +0100)
.travis.yml

index 607e440d55b40dcb5729f3541da2fcf8d106e542..4b0f1da53c5555661a2e85d1e924501bb5d1a9c8 100644 (file)
@@ -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