Merge pull request #147 from ebraminio/dockerci
[ci] change to docker infrastructure
This commit is contained in:
commit
904b0dc381
24
.travis.yml
24
.travis.yml
|
@ -1,3 +1,5 @@
|
||||||
|
# Linux Build Configuration for Travis
|
||||||
|
sudo: false # Use Travis docker infrastructure
|
||||||
language: cpp
|
language: cpp
|
||||||
compiler:
|
compiler:
|
||||||
- clang
|
- clang
|
||||||
|
@ -12,14 +14,9 @@ env:
|
||||||
# via the "travis encrypt" command using the project repo's public key
|
# via the "travis encrypt" command using the project repo's public key
|
||||||
- secure: "RoR4NtzEDTR8QKmLVuy2wN+YGXuq8VcgVvDuFJDdOdIbtX+kQStesJXDcf1y0G1T8Ripjn9JGXBd9eoUwNc8sJpxNwKZBkIPi42FuK6e/cZZRYlgUyi5df0fQJ8VSCDU7OoZJq3pAtTe8mQPeeuk5G7cKRSsJVt8e03K7PQcU6Y="
|
- secure: "RoR4NtzEDTR8QKmLVuy2wN+YGXuq8VcgVvDuFJDdOdIbtX+kQStesJXDcf1y0G1T8Ripjn9JGXBd9eoUwNc8sJpxNwKZBkIPi42FuK6e/cZZRYlgUyi5df0fQJ8VSCDU7OoZJq3pAtTe8mQPeeuk5G7cKRSsJVt8e03K7PQcU6Y="
|
||||||
install:
|
install:
|
||||||
- sudo apt-get install pkg-config ragel gtk-doc-tools # for autogen.sh
|
- pip install --user nose
|
||||||
- sudo apt-get install libfreetype6-dev # for font functions
|
- pip install --user cpp-coveralls # for coveralls.io code coverage tracking
|
||||||
- sudo apt-get install libglib2.0-dev # for font functions / tests / utils
|
- export PATH=$HOME/.local/bin:$PATH # Make sure we can find the above Python packages
|
||||||
- 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
|
|
||||||
- #sudo apt-get install libgirepository1.0-dev # for gobject-introspection
|
|
||||||
- sudo pip install cpp-coveralls # for coveralls.io code coverage tracking
|
|
||||||
script:
|
script:
|
||||||
- NOCONFIGURE=1 ./autogen.sh
|
- NOCONFIGURE=1 ./autogen.sh
|
||||||
- ./configure --with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphite2
|
- ./configure --with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphite2
|
||||||
|
@ -29,6 +26,17 @@ notifications:
|
||||||
email: harfbuzz@lists.freedesktop.org
|
email: harfbuzz@lists.freedesktop.org
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
|
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
|
||||||
coverity_scan:
|
coverity_scan:
|
||||||
project:
|
project:
|
||||||
name: "behdad/harfbuzz"
|
name: "behdad/harfbuzz"
|
||||||
|
|
Loading…
Reference in New Issue