mapnik/.travis.yml
2014-06-04 10:51:07 -07:00

55 lines
1.8 KiB
YAML

language: cpp
compiler:
- gcc
- clang
# http://about.travis-ci.org/blog/2013-11-29-postgresql-92-93-now-available/
addons:
postgresql: "9.3"
before_install:
# we need at least g++-4.7 for c++11 features
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
# grab more recent gdal/proj
# breaks due to http://trac.osgeo.org/ubuntugis/ticket/39
#- sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable
# more recent boost
- sudo add-apt-repository -y ppa:boost-latest/ppa
- sudo apt-get update -y
# upgrade compilers
- sudo apt-get install -y gcc-4.8 g++-4.8
- sudo apt-get install -y make boost1.55 libgdal-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
- 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 ../
- createdb template_postgis
- psql -c "CREATE EXTENSION postgis" template_postgis
install:
- if [ "${CXX}" = 'g++' ]; then export CXX="g++-4.8" && export CC="gcc-4.8"; fi;
- ./configure CXX="nice ${CXX}" CC="nice ${CC}" DEMO=False BINDINGS=${BINDINGS} BENCHMARK=${BENCHMARK} CPP_TESTS=${CPP_TESTS} CAIRO=True FAST=True || cat config.log
- JOBS=4 make
env:
- TESTS_TO_RUN=python BINDINGS=python CPP_TESTS=false BENCHMARK=false
- TESTS_TO_RUN=visual BINDINGS=python CPP_TESTS=false BENCHMARK=false
- TESTS_TO_RUN=cpp BINDINGS=none CPP_TESTS=true BENCHMARK=true
before_script:
- make test-$TESTS_TO_RUN
script:
- if [ "${BENCHMARK}" = true ]; then make bench; fi;
notifications:
irc:
channels:
- "irc.freenode.org#mapnik"
use_notice: true
email:
on_success: [never]
on_failure: [change]