From e956bf90386671411673f0fea73fce1fcadaa837 Mon Sep 17 00:00:00 2001 From: Daniel Axtens Date: Fri, 8 May 2015 23:21:53 +1000 Subject: [PATCH] Test cmake with Travis Signed-off-by: Daniel Axtens --- .travis.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 -- 2.47.2