]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
.travis.yml: explicitly install openssl to address build issue
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Fri, 29 Nov 2019 19:30:26 +0000 (20:30 +0100)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Fri, 29 Nov 2019 19:58:39 +0000 (20:58 +0100)
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
.travis.yml

index cbff95280a0ecf1b07a2abd60f585397c9f33c51..5673e2fea258a30157fa28e525d4a066bc1090f6 100644 (file)
@@ -6,7 +6,7 @@ compiler:
   - clang
 
 git:
-  submodules: true
+  submodules: false
 
 notifications:
   email:
@@ -17,10 +17,10 @@ notifications:
 before_install:
   - if [[ "$TRAVIS_OS_NAME" = "osx" ]]; then
         brew update;
-        for pkg in autoconf automake autogen libtool nettle p11-kit libtasn1 gettext;do
+        for pkg in openssl autoconf automake autogen libtool nettle p11-kit libtasn1 gettext;do
           brew install $pkg || true;
         done;
-        for pkg in nettle p11-kit libtasn1;do
+        for pkg in nettle wget p11-kit libtasn1;do
           brew upgrade $pkg || true;
         done;
     fi