From 1a22cb91fb047eeb98fe8909407830a9f0daef7a Mon Sep 17 00:00:00 2001 From: Tim Ruehsen Date: Thu, 19 Jun 2014 13:17:28 +0200 Subject: [PATCH] added more build checks --- .travis.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 81538a2..04ac2ab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,13 @@ compiler: - gcc - clang # Change this to your needs -script: ./autogen.sh && ./configure --enable-gtk-doc && make -j4 && make check -j4 && make distcheck +script: + - ./autogen.sh + - ./configure --enable-gtk-doc && make -j4 && make check -j4 + - ./configure --without-libicu && make clean && make -j4 && make check -j4 + - ./configure --disable-builtin && make clean && make -j4 && make check -j4 + - ./configure --disable-builtin --without-libicu && make clean && make -j4 && make check -j4 + - make distcheck before_install: - apt-cache search libicu | grep icu - sudo apt-get -qq update