2012-09-02 13:48:49 +02:00
|
|
|
language: cpp
|
|
|
|
|
2015-01-23 14:21:54 -08:00
|
|
|
sudo: false
|
|
|
|
|
2015-01-23 23:51:54 -08:00
|
|
|
addons:
|
|
|
|
postgresql: "9.3"
|
2014-08-21 16:36:55 -07:00
|
|
|
|
2015-01-26 22:39:52 -08:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
2015-01-27 15:21:40 -08:00
|
|
|
env: JOBS=12
|
2015-01-26 22:39:52 -08:00
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
2015-01-27 15:21:40 -08:00
|
|
|
env: JOBS=12
|
2015-01-26 22:39:52 -08:00
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
2015-01-27 15:21:40 -08:00
|
|
|
env: JOBS=6
|
2015-01-26 22:39:52 -08:00
|
|
|
|
2014-08-21 16:36:55 -07:00
|
|
|
install:
|
2015-01-26 22:47:58 -08:00
|
|
|
- if [[ $(uname -s) == 'Linux' ]]; then psql -U postgres -c 'create database template_postgis;' -U postgres; psql -U postgres -c 'create extension postgis;' -d template_postgis -U postgres; fi;
|
2013-11-22 00:52:49 -08:00
|
|
|
|
2014-08-21 17:01:51 -07:00
|
|
|
script:
|
2015-01-23 14:04:32 -08:00
|
|
|
- source bootstrap.sh
|
2015-02-02 20:30:59 -08:00
|
|
|
- wget https://gist.githubusercontent.com/springmeyer/0833fa43794838889139/raw/build_pycairo.sh && chmod +x build_pycairo.sh && ./build_pycairo.sh
|
|
|
|
- export PYTHONPATH=$(pwd)/mason_packages/.link/lib/python2.7/site-packages:${PYTHONPATH}
|
2015-01-24 10:05:58 -08:00
|
|
|
- ./configure
|
2015-01-26 22:53:34 -08:00
|
|
|
- make
|
2014-10-20 22:43:17 -07:00
|
|
|
- git clone --depth=1 https://github.com/mapbox/mapnik-test-data tests/data/mapnik-test-data
|
2014-09-30 19:19:25 -07:00
|
|
|
- make test
|
2015-02-02 22:09:03 -08:00
|
|
|
- make bench
|