blob: 13cae63739b1f75f7744a3f2f2ec820606d9c7db [file] [log] [blame]
Ebrahim Byagowiba096bc2015-10-19 21:41:01 +03301# Linux Build Configuration for Travis
2sudo: false # Use Travis docker infrastructure
Behdad Esfahbod5f705b42013-03-05 01:37:44 -05003language: cpp
4compiler:
Behdad Esfahbod40987e82014-10-01 17:44:30 -04005 - clang
Behdad Esfahbod5f705b42013-03-05 01:37:44 -05006 - gcc
Behdad Esfahbod9b89fc52014-10-01 17:20:31 -04007env:
8 global:
Behdad Esfahbodef40ca82014-10-01 18:07:27 -04009 - CPPFLAGS=""
10 - CFLAGS="-Werror --coverage"
11 - CXXFLAGS="-Werror --coverage"
12 - LDFLAGS="--coverage"
Behdad Esfahbodf0c80062015-06-12 17:37:41 -070013 # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
14 # via the "travis encrypt" command using the project repo's public key
15 - secure: "RoR4NtzEDTR8QKmLVuy2wN+YGXuq8VcgVvDuFJDdOdIbtX+kQStesJXDcf1y0G1T8Ripjn9JGXBd9eoUwNc8sJpxNwKZBkIPi42FuK6e/cZZRYlgUyi5df0fQJ8VSCDU7OoZJq3pAtTe8mQPeeuk5G7cKRSsJVt8e03K7PQcU6Y="
Behdad Esfahbod406a0202014-10-01 18:54:55 -040016install:
Ebrahim Byagowiba096bc2015-10-19 21:41:01 +033017 - pip install --user nose
18 - pip install --user cpp-coveralls # for coveralls.io code coverage tracking
19 - export PATH=$HOME/.local/bin:$PATH # Make sure we can find the above Python packages
Behdad Esfahbode281ed32014-10-01 16:09:08 -040020script:
Behdad Esfahboddfe80782014-10-01 16:38:47 -040021 - NOCONFIGURE=1 ./autogen.sh
Behdad Esfahbod82010a42015-05-04 23:09:51 -070022 - ./configure --with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphite2
Behdad Esfahbod72280112014-10-01 18:58:43 -040023 - make && make check && { rm -f src/.libs/NONE.gcov; touch src/NONE; test $CC != gcc || coveralls; }
Behdad Esfahbod5f705b42013-03-05 01:37:44 -050024notifications:
25 irc: "irc.freenode.org#harfbuzz"
26 email: harfbuzz@lists.freedesktop.org
Behdad Esfahbodf0c80062015-06-12 17:37:41 -070027
28addons:
Ebrahim Byagowiba096bc2015-10-19 21:41:01 +033029 apt:
30 packages:
31 - pkg-config # for autogen.sh
32 - ragel
33 - gtk-doc-tools
34 - libfreetype6-dev # for font function
35 - libglib2.0-dev # for font functions / tests / utils
36 - libcairo2-dev # for utils
37 - libicu-dev # for extra unicode functions
38 - libgraphite2-dev # for extra shapers
39 - # libgirepository1.0-dev # for gobject-introspection
Behdad Esfahbodf0c80062015-06-12 17:37:41 -070040 coverity_scan:
41 project:
42 name: "behdad/harfbuzz"
43 description: "Build submitted via Travis CI"
44 notification_email: coverity@behdad.org
45 build_command_prepend: "./configure; make clean"
46 build_command: "make -j 4"
47 branch_pattern: master