aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
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