Ebrahim Byagowi | ba096bc | 2015-10-19 21:41:01 +0330 | [diff] [blame^] | 1 | # Linux Build Configuration for Travis |
| 2 | sudo: false # Use Travis docker infrastructure |
Behdad Esfahbod | 5f705b4 | 2013-03-05 01:37:44 -0500 | [diff] [blame] | 3 | language: cpp |
| 4 | compiler: |
Behdad Esfahbod | 40987e8 | 2014-10-01 17:44:30 -0400 | [diff] [blame] | 5 | - clang |
Behdad Esfahbod | 5f705b4 | 2013-03-05 01:37:44 -0500 | [diff] [blame] | 6 | - gcc |
Behdad Esfahbod | 9b89fc5 | 2014-10-01 17:20:31 -0400 | [diff] [blame] | 7 | env: |
| 8 | global: |
Behdad Esfahbod | ef40ca8 | 2014-10-01 18:07:27 -0400 | [diff] [blame] | 9 | - CPPFLAGS="" |
| 10 | - CFLAGS="-Werror --coverage" |
| 11 | - CXXFLAGS="-Werror --coverage" |
| 12 | - LDFLAGS="--coverage" |
Behdad Esfahbod | f0c8006 | 2015-06-12 17:37:41 -0700 | [diff] [blame] | 13 | # 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 Esfahbod | 406a020 | 2014-10-01 18:54:55 -0400 | [diff] [blame] | 16 | install: |
Ebrahim Byagowi | ba096bc | 2015-10-19 21:41:01 +0330 | [diff] [blame^] | 17 | - 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 Esfahbod | e281ed3 | 2014-10-01 16:09:08 -0400 | [diff] [blame] | 20 | script: |
Behdad Esfahbod | dfe8078 | 2014-10-01 16:38:47 -0400 | [diff] [blame] | 21 | - NOCONFIGURE=1 ./autogen.sh |
Behdad Esfahbod | 82010a4 | 2015-05-04 23:09:51 -0700 | [diff] [blame] | 22 | - ./configure --with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphite2 |
Behdad Esfahbod | 7228011 | 2014-10-01 18:58:43 -0400 | [diff] [blame] | 23 | - make && make check && { rm -f src/.libs/NONE.gcov; touch src/NONE; test $CC != gcc || coveralls; } |
Behdad Esfahbod | 5f705b4 | 2013-03-05 01:37:44 -0500 | [diff] [blame] | 24 | notifications: |
| 25 | irc: "irc.freenode.org#harfbuzz" |
| 26 | email: harfbuzz@lists.freedesktop.org |
Behdad Esfahbod | f0c8006 | 2015-06-12 17:37:41 -0700 | [diff] [blame] | 27 | |
| 28 | addons: |
Ebrahim Byagowi | ba096bc | 2015-10-19 21:41:01 +0330 | [diff] [blame^] | 29 | 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 Esfahbod | f0c8006 | 2015-06-12 17:37:41 -0700 | [diff] [blame] | 40 | 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 |