From 6ddf42419214308c75bc5131cf5c5c9ea1f69e85 Mon Sep 17 00:00:00 2001 From: Dmitry Podgorny Date: Tue, 6 Nov 2018 11:45:39 +0200 Subject: [PATCH] travis-ci: add -Werror flag This flag has been removed from Makefile.am. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e30f058..40c4a24 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ install: before_script: - ./bootstrap.sh script: - - ./configure ${CONFIGURE_OPT} && make && make check-TESTS + - ./configure ${CONFIGURE_OPT} CFLAGS="-Werror" && make && make check env: - CONFIGURE_OPT="--without-libxml2" - CONFIGURE_OPT="--with-libxml2"