diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-10-16 23:35:44 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-10-18 14:51:49 +0200 |
commit | ad547fcf7b3c0191f63396b94c797bfbb4147f62 (patch) | |
tree | 539d2f4855a9f9b9d46d8a43a98450faa16bf8bf /.travis.yml | |
parent | 6b6ba1dc29857f5eb4c31fed3d63619fea99d5f4 (diff) | |
download | curl-ad547fcf7b3c0191f63396b94c797bfbb4147f62.tar.gz |
travis: add build for "configure --disable-verbose"
Closes #3144
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 2e6919816..5998f4c2c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -60,6 +60,10 @@ matrix: - os: linux compiler: gcc dist: trusty + env: T=normal C="--disable-verbose" CPPFLAGS="-Wno-variadic-macros" NOTESTS=1 + - os: linux + compiler: gcc + dist: trusty env: T=normal BROTLI=yes - os: linux compiler: gcc @@ -296,7 +300,9 @@ script: if [ "$T" = "normal" ]; then ./configure --enable-warnings --enable-werror $C make && make examples - make test-nonflaky + if [ -z $NOTESTS ]; then + make test-nonflaky + fi if [ -n $CHECKSRC ]; then make checksrc fi |