]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
.travis.yml: simplified the submodule checkout
authorNikos Mavrogiannopoulos <nmav@redhat.com>
Fri, 21 Oct 2016 11:16:50 +0000 (13:16 +0200)
committerNikos Mavrogiannopoulos <nmav@redhat.com>
Fri, 21 Oct 2016 12:15:59 +0000 (14:15 +0200)
The default submodule initialization in travis caused the MacOSX builds to fail.

.travis.yml

index 7b06e8977ae5147f499011c6e699a07b87b7e8a0..f4d0ae7782d7e11791a840de06850c3b726eb5bf 100644 (file)
@@ -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