.travis.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-)
New commits: commit 1b387571e4d0eed883f1ae8ec85cf0e818b4a7f9 Author: Behdad Esfahbod <[email protected]> Date: Wed Oct 1 16:14:59 2014 -0400 [travis] Unbreak diff --git a/.travis.yml b/.travis.yml index b786359..91ee797 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,13 +14,7 @@ install: before_script: - true script: - - ./autogen.sh \ - --with-freetype \ - --with-glib \ - --with-gobject \ - --with-cairo \ - --with-icu \ - --with-graphite2 + - ./autogen.sh --with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphite2 - make CPPFLAGS=-Werror - make check CPPFLAGS=-Werror after_success: commit e281ed360dfdf803aea87b6078983867d08e07a7 Author: Behdad Esfahbod <[email protected]> Date: Wed Oct 1 16:09:08 2014 -0400 [travis] Minor diff --git a/.travis.yml b/.travis.yml index 1c0dbab..b786359 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: [email protected] _______________________________________________ HarfBuzz mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/harfbuzz
