language: cpp compiler: - clang env: matrix: - XMLPARSER="libxml2" - XMLPARSER="ptree" before_install: - sudo add-apt-repository -y ppa:boost-latest/ppa - sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable - sudo apt-get update -qq - sudo apt-get install -y postgis postgresql-9.1-postgis-2.0-scripts make valgrind boost1.55 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 # multi-face ttc font: https://github.com/mapnik/mapnik/issues/2274 - sudo apt-get install ttf-wqy-microhei before_script: - createdb -EUTF8 template_postgis - psql -c 'create extension postgis' template_postgis script: - ./configure CXX=${CXX} CC=${CC} XML_PARSER=$XML_PARSER DEBUG=False DEMO=True BENCHMARK=False BINDINGS='python' CPP_TESTS=True CAIRO=True FAST=True - JOBS=6 make - make test-local - sudo make install - make grind