From 78a63e5dc0485ebc267caf95fc27cf1036c8f4f6 Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Mon, 6 Jan 2014 18:21:45 +0100 Subject: [PATCH] build: force Travis CI to build under _build/ See the previous commit for the (ir)rationale behind this. Furthermore, added the "make" step instead of directly jump from "./configure" to "make check". --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 94584070..94546555 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,10 +11,10 @@ install: - sudo apt-get -qq install libcairo2-dev libcairo-gobject2 gtk-doc-tools before_script: - - ./autogen.sh && mkdir -p linux && cd linux + - ./autogen.sh && mkdir -p _build && cd _build script: - - ../configure && make check + - ../configure && make && make check after_script: - cd .. -- 2.11.4.GIT