2015-10-19 18:11:01 +00:00
|
|
|
# Linux Build Configuration for Travis
|
|
|
|
sudo: false # Use Travis docker infrastructure
|
2013-03-05 06:37:44 +00:00
|
|
|
language: cpp
|
|
|
|
compiler:
|
2014-10-01 21:44:30 +00:00
|
|
|
- clang
|
2013-03-05 06:37:44 +00:00
|
|
|
- gcc
|
2014-10-01 21:20:31 +00:00
|
|
|
env:
|
|
|
|
global:
|
2014-10-01 22:07:27 +00:00
|
|
|
- CPPFLAGS=""
|
|
|
|
- CFLAGS="-Werror --coverage"
|
|
|
|
- CXXFLAGS="-Werror --coverage"
|
|
|
|
- LDFLAGS="--coverage"
|
2014-10-01 22:54:55 +00:00
|
|
|
install:
|
2015-10-19 18:11:01 +00:00
|
|
|
- pip install --user nose
|
|
|
|
- pip install --user cpp-coveralls # for coveralls.io code coverage tracking
|
|
|
|
- export PATH=$HOME/.local/bin:$PATH # Make sure we can find the above Python packages
|
2014-10-01 20:09:08 +00:00
|
|
|
script:
|
2014-10-01 20:38:47 +00:00
|
|
|
- NOCONFIGURE=1 ./autogen.sh
|
2015-05-05 06:09:51 +00:00
|
|
|
- ./configure --with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphite2
|
2014-10-01 22:58:43 +00:00
|
|
|
- make && make check && { rm -f src/.libs/NONE.gcov; touch src/NONE; test $CC != gcc || coveralls; }
|
2013-03-05 06:37:44 +00:00
|
|
|
notifications:
|
|
|
|
irc: "irc.freenode.org#harfbuzz"
|
|
|
|
email: harfbuzz@lists.freedesktop.org
|
2015-06-13 00:37:41 +00:00
|
|
|
|
|
|
|
addons:
|
2015-10-19 18:11:01 +00:00
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- pkg-config # for autogen.sh
|
|
|
|
- ragel
|
|
|
|
- gtk-doc-tools
|
|
|
|
- libfreetype6-dev # for font function
|
|
|
|
- libglib2.0-dev # for font functions / tests / utils
|
|
|
|
- libcairo2-dev # for utils
|
|
|
|
- libicu-dev # for extra unicode functions
|
|
|
|
- libgraphite2-dev # for extra shapers
|
|
|
|
- # libgirepository1.0-dev # for gobject-introspection
|