44 lines
1.4 KiB
YAML
44 lines
1.4 KiB
YAML
language: cpp
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
addons:
|
|
postgresql: "9.3"
|
|
|
|
before_install:
|
|
- nproc
|
|
- free
|
|
# 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
|
|
- 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
|
|
- 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
|
|
- sudo ldconfig
|
|
- cd ../
|
|
|
|
install:
|
|
- if [[ "${CXX}" == 'g++' ]]; then export CXX="g++-4.8" && export CC="gcc-4.8"; fi;
|
|
- ./configure CXX="${CXX}" CC="${CC}" DEMO=True BENCHMARK=True CPP_TESTS=True CAIRO=True FAST=True
|
|
- if [[ "${CXX}" == 'g++-4.8' ]]; then JOBS=3 make; else JOBS=8 make; fi;
|
|
|
|
before_script:
|
|
- make test
|
|
|
|
script:
|
|
- make bench
|
|
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
- "irc.freenode.org#mapnik"
|
|
use_notice: true
|