From: Nikos Mavrogiannopoulos Date: Fri, 21 Oct 2016 11:16:50 +0000 (+0200) Subject: .travis.yml: simplified the submodule checkout X-Git-Tag: gnutls_3_5_6~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6426fe1e8dcf29a1cd5f3a6cef04beb9f2a894b2;p=thirdparty%2Fgnutls.git .travis.yml: simplified the submodule checkout The default submodule initialization in travis caused the MacOSX builds to fail. --- diff --git a/.travis.yml b/.travis.yml index 7b06e8977a..f4d0ae7782 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,12 +5,17 @@ language: c compiler: - clang +git: + submodules: false + notifications: email: on_success: change on_failure: always + before_install: + - git submodule update --init - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install pkg-config autoconf automake autogen libtool nettle valgrind p11-kit libtasn1 unbound libidn gettext; fi @@ -19,4 +24,4 @@ script: - PATH=/usr/local/opt/gettext/bin:$PATH make autoreconf && rm -f tests/suite/mini-eagain2.c - PATH=/usr/local/opt/gettext/bin:$PATH ./configure --disable-valgrind-tests --disable-doc --disable-guile --without-p11-kit --disable-dependency-tracking - make -j4 - - make -j4 check + - make check -j4