From: Daniel Axtens Date: Fri, 8 May 2015 13:21:53 +0000 (+1000) Subject: Test cmake with Travis X-Git-Tag: 1.9.9-b1~854^2~1^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F23%2Fhead;p=thirdparty%2Fzlib-ng.git Test cmake with Travis Signed-off-by: Daniel Axtens --- diff --git a/.travis.yml b/.travis.yml index e414537d..bf00ba8c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,9 @@ compiler: - gcc - clang env: - - BUILDDIR=. SRCDIR=. - - BUILDDIR=../build SRCDIR=../zlib-ng + - BUILDDIR=. TOOL="./configure" + - BUILDDIR=../build TOOL="../zlib-ng/configure" + - BUILDDIR=. TOOL="cmake ." + - BUILDDIR=../build TOOL="cmake ../zlib-ng" script: mkdir -p $BUILDDIR && cd $BUILDDIR && - $SRCDIR/configure && make && make check + $TOOL && make && make test