2012-09-02 13:48:49 +02:00
|
|
|
language: cpp
|
|
|
|
|
2013-08-23 05:30:36 +02:00
|
|
|
compiler:
|
|
|
|
- gcc
|
2014-05-08 16:26:44 +02:00
|
|
|
# disabled to due https://github.com/mapnik/mapnik/issues/2235
|
|
|
|
#- clang
|
2014-03-18 23:00:24 +01:00
|
|
|
|
|
|
|
# http://about.travis-ci.org/blog/2013-11-29-postgresql-92-93-now-available/
|
2014-05-23 18:02:43 +02:00
|
|
|
addons:
|
|
|
|
postgresql: "9.3"
|
2012-09-02 13:48:49 +02:00
|
|
|
|
|
|
|
before_install:
|
2013-11-22 22:37:56 +01:00
|
|
|
# we need at least g++-4.7 for c++11 features
|
2014-03-18 23:00:24 +01:00
|
|
|
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
2013-11-22 22:37:56 +01:00
|
|
|
# grab more recent gdal/proj
|
2014-05-23 18:02:43 +02:00
|
|
|
# breaks due to http://trac.osgeo.org/ubuntugis/ticket/39
|
|
|
|
#- sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable
|
2013-11-22 22:37:56 +01:00
|
|
|
# more recent boost
|
2014-05-23 02:13:20 +02:00
|
|
|
- sudo add-apt-repository -y ppa:boost-latest/ppa
|
2013-11-22 22:47:50 +01:00
|
|
|
- sudo apt-get update -y
|
2013-11-22 22:37:56 +01:00
|
|
|
# upgrade compilers
|
2014-04-09 15:22:38 +02:00
|
|
|
- sudo apt-get install -y gcc-4.8 g++-4.8
|
2014-05-23 18:02:43 +02:00
|
|
|
- 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
|
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 ../
|
2014-05-23 18:02:43 +02:00
|
|
|
- createdb template_postgis
|
|
|
|
- psql -c "CREATE EXTENSION postgis" template_postgis
|
2013-11-22 09:52:49 +01:00
|
|
|
|
2013-11-22 21:07:58 +01:00
|
|
|
install:
|
2014-03-18 23:00:24 +01:00
|
|
|
- if [ "${CXX}" = 'g++' ]; then export CXX="g++-4.8" && export CC="gcc-4.8"; fi;
|
2014-05-23 21:07:10 +02:00
|
|
|
- ./configure CXX="nice ${CXX}" CC="nice ${CC}" DEMO=False BINDINGS=${BINDINGS} BENCHMARK=${BENCHMARK} CPP_TESTS=${CPP_TESTS} CAIRO=True FAST=True || cat config.log
|
2014-05-23 23:17:25 +02:00
|
|
|
- JOBS=4 make
|
2013-11-22 21:07:58 +01:00
|
|
|
|
|
|
|
env:
|
2013-11-22 22:04:17 +01:00
|
|
|
- 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
|
2013-11-22 21:07:58 +01:00
|
|
|
|
|
|
|
before_script:
|
|
|
|
- make test-$TESTS_TO_RUN
|
|
|
|
|
|
|
|
script:
|
2013-11-22 21:35:14 +01:00
|
|
|
- if [ "${BENCHMARK}" = true ]; then make bench; fi;
|
2013-01-04 21:25:07 +01:00
|
|
|
|
2013-01-04 20:47:00 +01:00
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels:
|
|
|
|
- "irc.freenode.org#mapnik"
|
|
|
|
use_notice: true
|
2013-12-03 18:01:16 +01:00
|
|
|
email:
|
|
|
|
on_success: [never]
|
|
|
|
on_failure: [change]
|