diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-10-21 13:16:50 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-10-21 14:15:59 +0200 |
commit | 6426fe1e8dcf29a1cd5f3a6cef04beb9f2a894b2 (patch) | |
tree | 3c753d39acb150c9e829a0837562b342e4498b66 /.travis.yml | |
parent | 5e80bde84bb7e7e09a0f2af1032de9d77b8f1b03 (diff) | |
download | gnutls-6426fe1e8dcf29a1cd5f3a6cef04beb9f2a894b2.tar.gz |
.travis.yml: simplified the submodule checkout
The default submodule initialization in travis caused the MacOSX builds to fail.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 6 insertions, 1 deletions
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 |