From: Daniel Axtens Date: Fri, 8 May 2015 08:45:10 +0000 (+1000) Subject: Check out of tree building in Travis X-Git-Tag: 1.9.9-b1~859^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F21%2Fhead;p=thirdparty%2Fzlib-ng.git Check out of tree building in Travis Signed-off-by: Daniel Axtens --- diff --git a/.travis.yml b/.travis.yml index 94ef7488..e414537d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,4 +2,8 @@ language: c compiler: - gcc - clang -script: ./configure && make && make check +env: + - BUILDDIR=. SRCDIR=. + - BUILDDIR=../build SRCDIR=../zlib-ng +script: mkdir -p $BUILDDIR && cd $BUILDDIR && + $SRCDIR/configure && make && make check