HarfBuzz text shaping engine
http://harfbuzz.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
# Build Configuration for Travis |
|
dist: trusty |
|
|
|
language: cpp |
|
|
|
matrix: |
|
include: |
|
- os: linux |
|
compiler: gcc |
|
script: |
|
# Remove the following three lines when Travis updates its distro |
|
- export PKG_CONFIG_PATH="$HOME/.local/lib/pkgconfig" |
|
- export LD_LIBRARY_PATH="$HOME/.local/lib" |
|
- bash .ci/build-freetype.sh |
|
|
|
- ./autogen.sh NOCONFIGURE=1 |
|
- ./configure $CONFIGURE_OPTS --enable-gtk-doc --enable-code-coverage --with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphite2 |
|
- make |
|
- make check || .ci/fail.sh |
|
- rm -rf freetype-2.9 |
|
after_success: |
|
- bash .ci/run-coveralls.sh # coveralls.io code coverage |
|
|
|
notifications: |
|
irc: "irc.freenode.org#harfbuzz" |
|
email: harfbuzz-bots-chatter@googlegroups.com |
|
|
|
cache: |
|
directories: |
|
- /home/travis/.local |
|
|
|
addons: |
|
apt: |
|
packages: |
|
- pkg-config # for autogen.sh |
|
- ragel |
|
- lcov |
|
- 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
|
|
|