From e281ed360dfdf803aea87b6078983867d08e07a7 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 1 Oct 2014 16:09:08 -0400 Subject: [PATCH] [travis] Minor --- .travis.yml | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1c0dbab11..b7863596f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,14 +2,33 @@ language: cpp compiler: - clang - gcc -install: +before_install: - sudo apt-get install pkg-config ragel gtk-doc-tools # for autogen.sh - sudo apt-get install libfreetype6-dev # for font functions - sudo apt-get install libglib2.0-dev # for font functions / tests / utils - sudo apt-get install libcairo2-dev # for utils - sudo apt-get install libicu-dev # for extra unicode functions - sudo apt-get install libgraphite2-dev # for extra shapers -script: ./autogen.sh --with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphite2 && make CPPFLAGS=-Werror && make check CPPFLAGS=-Werror +install: + - true +before_script: + - true +script: + - ./autogen.sh \ + --with-freetype \ + --with-glib \ + --with-gobject \ + --with-cairo \ + --with-icu \ + --with-graphite2 + - make CPPFLAGS=-Werror + - make check CPPFLAGS=-Werror +after_success: + - true +after_failure: + - true +after_script: + - true notifications: irc: "irc.freenode.org#harfbuzz" email: harfbuzz@lists.freedesktop.org