summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJoe Orton <jorton@redhat.com>2019-03-07 13:02:50 +0000
committerJoe Orton <jorton@redhat.com>2019-03-07 13:02:50 +0000
commit8e0e48f19cf502a0e178b72efcd6590a37e4dbab (patch)
tree96803b9fc64a3f03343b9938a608bccca47e8024 /.travis.yml
parent3f0e67a1d12884569d88ba85ce03759332d69eed (diff)
downloadneon-git-8e0e48f19cf502a0e178b72efcd6590a37e4dbab.tar.gz
Try to use -j2, fix non-DAV build, try building docs.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 996181a..5882c78 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,6 +8,9 @@ addons:
- libxml2-dev
- libnss3-tools
- libproxy-dev
+env:
+ global:
+ - MARGS="-j2 check"
matrix:
include:
- os: linux
@@ -21,7 +24,7 @@ matrix:
- os: linux
compiler: gcc
dist: trusty
- env: CONF="--without-libproxy --without-gssapi --without-zlib --disable-nls --disable-debug --without-webdav"
+ env: CONF="--without-libproxy --without-gssapi --without-zlib --disable-nls --disable-debug --disable-webdav"
- os: linux
compiler: gcc
dist: trusty
@@ -38,4 +41,8 @@ matrix:
compiler: gcc
dist: trusty
env: CONF="--with-ssl=openssl --enable-memleak"
-script: ./autogen.sh && ./configure --enable-warnings $CONF && make check
+ - os: linux
+ compiler: gcc
+ dist: trusty
+ env: MARGS=docs
+script: ./autogen.sh && ./configure --enable-warnings $CONF && make $MARGS