summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2019-11-29 20:30:26 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2019-11-29 20:58:39 +0100
commitfb6cf5beda18d9be6992245c74c45183c9defa63 (patch)
treed72366324f08119da6a4f39697d6e97b0f5e1cd0
parent6d7aaa8a1d03be1564905a96d4d6a31ff3b4d186 (diff)
downloadgnutls-fb6cf5beda18d9be6992245c74c45183c9defa63.tar.gz
.travis.yml: explicitly install openssl to address build issue
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
-rw-r--r--.travis.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index cbff95280a..5673e2fea2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -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