From: Nicola Fontana Date: Mon, 6 Jan 2014 17:21:45 +0000 (+0100) Subject: build: force Travis CI to build under _build/ X-Git-Tag: 0.7.5~38 X-Git-Url: https://repo.or.cz/w/adg.git/commitdiff_plain/78a63e5dc0485ebc267caf95fc27cf1036c8f4f6 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". --- 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 ..