mapnik/.travis.yml

39 lines
1.3 KiB
YAML
Raw Normal View History

2012-09-02 13:48:49 +02:00
language: cpp
2013-08-23 05:30:36 +02:00
compiler:
- gcc
2012-09-02 13:48:49 +02:00
before_install:
- sudo add-apt-repository -y ppa:mapnik/boost
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable
2013-11-22 08:54:56 +01:00
- sudo apt-get update
2013-11-22 09:00:47 +01:00
- sudo apt-get install gcc-4.7 g++-4.7 make libboost-dev libboost-filesystem-dev libboost-program-options-dev libboost-python-dev libboost-regex-dev libboost-system-dev libboost-thread-dev python-nose libicu-dev libpng-dev libjpeg-dev libtiff-dev libwebp-dev libz-dev libfreetype6-dev libxml2-dev libproj-dev libcairo-dev python-cairo-dev libsqlite3-dev postgresql-server-dev*
2013-11-22 09:52:49 +01:00
- wget http://mapnik.s3.amazonaws.com/deps/harfbuzz-0.9.24.tar.bz2
- tar xf harfbuzz-0.9.24.tar.bz2
- cd harfbuzz-0.9.24
- ./configure && make && sudo make install
- sudo ldconfig
- cd ../
install:
2013-11-19 21:33:44 +01:00
- if [ "${CXX}" = 'g++' ]; then export CXX="g++-4.7" && export CC="gcc-4.7"; fi; ./configure CXX=${CXX} CC=${CC} DEMO=False BINDINGS=python BENCHMARK=True CPP_TESTS=True CAIRO=True FAST=True || cat config.log
- JOBS=1 make
env:
- TESTS_TO_RUN=python
- TESTS_TO_RUN=cpp
- TESTS_TO_RUN=visual
before_script:
- make test-$TESTS_TO_RUN
script:
2013-11-19 21:33:44 +01:00
- make bench
notifications:
irc:
channels:
- "irc.freenode.org#mapnik"
use_notice: true