2012-09-02 13:48:49 +02:00
|
|
|
language: cpp
|
|
|
|
|
2013-08-22 20:30:36 -07:00
|
|
|
compiler:
|
2014-06-04 10:51:07 -07:00
|
|
|
- clang
|
2014-07-24 16:49:58 -07:00
|
|
|
- gcc
|
2014-03-18 15:00:24 -07:00
|
|
|
|
2014-05-23 09:02:43 -07:00
|
|
|
addons:
|
|
|
|
postgresql: "9.3"
|
2012-09-02 13:48:49 +02:00
|
|
|
|
|
|
|
before_install:
|
2014-07-03 09:47:11 -07:00
|
|
|
- nproc
|
|
|
|
- free
|
2013-11-22 13:37:56 -08:00
|
|
|
# we need at least g++-4.7 for c++11 features
|
2014-03-18 15:00:24 -07:00
|
|
|
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
2013-11-22 13:37:56 -08:00
|
|
|
# grab more recent gdal/proj
|
2014-05-23 09:02:43 -07:00
|
|
|
# breaks due to http://trac.osgeo.org/ubuntugis/ticket/39
|
|
|
|
#- sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable
|
2013-11-22 13:37:56 -08:00
|
|
|
# more recent boost
|
2014-05-22 17:13:20 -07:00
|
|
|
- sudo add-apt-repository -y ppa:boost-latest/ppa
|
2013-11-22 13:47:50 -08:00
|
|
|
- sudo apt-get update -y
|
2014-07-22 16:14:22 -07:00
|
|
|
- sudo apt-get install -y gcc-4.8 g++-4.8 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
|
2014-07-22 14:35:20 -07:00
|
|
|
- wget http://mapnik.s3.amazonaws.com/deps/harfbuzz-0.9.32.tar.bz2
|
|
|
|
- tar xf harfbuzz-0.9.32.tar.bz2
|
|
|
|
- cd harfbuzz-0.9.32
|
|
|
|
- ./configure --with-icu --with-cairo=no --with-glib=no --with-gobject=no --with-graphite2=no --with-freetype --with-uniscribe=no --with-coretext=no && make && sudo make install
|
2013-11-22 00:52:49 -08:00
|
|
|
- sudo ldconfig
|
|
|
|
- cd ../
|
|
|
|
|
2013-11-22 12:07:58 -08:00
|
|
|
install:
|
2014-06-04 09:31:20 -07:00
|
|
|
- if [[ "${CXX}" == 'g++' ]]; then export CXX="g++-4.8" && export CC="gcc-4.8"; fi;
|
2014-07-22 16:14:22 -07:00
|
|
|
- ./configure CXX="${CXX}" CC="${CC}" DEMO=True BENCHMARK=True CPP_TESTS=True CAIRO=True FAST=True
|
2014-07-24 16:49:58 -07:00
|
|
|
- if [[ "${CXX}" == 'g++-4.8' ]]; then JOBS=3 make; else JOBS=8 make; fi;
|
2013-11-22 12:07:58 -08:00
|
|
|
|
|
|
|
before_script:
|
2014-07-22 16:14:22 -07:00
|
|
|
- make test
|
2013-11-22 12:07:58 -08:00
|
|
|
|
|
|
|
script:
|
2014-07-22 16:14:22 -07:00
|
|
|
- make bench
|
2013-01-04 12:25:07 -08:00
|
|
|
|
2013-01-04 11:47:00 -08:00
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels:
|
|
|
|
- "irc.freenode.org#mapnik"
|
|
|
|
use_notice: true
|