From: Hans Kristian Rosbach Date: Fri, 24 Mar 2017 13:10:33 +0000 (+0100) Subject: Change so travis compiles with warnings enabled, when using configure. X-Git-Tag: 1.9.9-b1~665 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61f8c2c4f1d287817d2bddfff002b21ee8a03120;p=thirdparty%2Fzlib-ng.git Change so travis compiles with warnings enabled, when using configure. --- diff --git a/.travis.yml b/.travis.yml index 296f8a628..693723c8b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,16 +6,16 @@ matrix: include: - os: linux compiler: gcc - env: BUILDDIR=. TOOL="./configure" + env: BUILDDIR=. TOOL="./configure --warn" - os: linux compiler: gcc - env: BUILDDIR=. TOOL="./configure --zlib-compat --native" + env: BUILDDIR=. TOOL="./configure --warn --zlib-compat --native" - os: linux compiler: gcc - env: BUILDDIR=../build TOOL="../zlib-ng/configure --zlib-compat" + env: BUILDDIR=../build TOOL="../zlib-ng/configure --warn --zlib-compat" - os: linux compiler: gcc - env: BUILDDIR=. TOOL="./configure --zlib-compat --without-optimizations --without-new-strategies" + env: BUILDDIR=. TOOL="./configure --warn --zlib-compat --without-optimizations --without-new-strategies" - os: linux compiler: gcc env: BUILDDIR=. TOOL="cmake ." @@ -25,24 +25,24 @@ matrix: - os: linux compiler: clang - env: BUILDDIR=. TOOL="./configure --zlib-compat" + env: BUILDDIR=. TOOL="./configure --warn --zlib-compat" - os: linux compiler: clang env: BUILDDIR=../build TOOL="cmake ../zlib-ng" - os: osx compiler: gcc - env: BUILDDIR=. TOOL="./configure --zlib-compat" + env: BUILDDIR=. TOOL="./configure --warn --zlib-compat" - os: osx compiler: gcc - env: BUILDDIR=../build TOOL="../zlib-ng/configure --zlib-compat" + env: BUILDDIR=../build TOOL="../zlib-ng/configure --warn --zlib-compat" - os: osx compiler: gcc env: BUILDDIR=. TOOL="cmake ." - os: osx compiler: clang - env: BUILDDIR=. TOOL="./configure --zlib-compat" + env: BUILDDIR=. TOOL="./configure --warn --zlib-compat" - os: osx compiler: clang env: BUILDDIR=../build TOOL="cmake ../zlib-ng"