2012-09-02 13:48:49 +02:00
|
|
|
language: cpp
|
|
|
|
|
2015-01-23 23:21:54 +01:00
|
|
|
sudo: false
|
|
|
|
|
2015-04-27 00:30:25 +02:00
|
|
|
git:
|
2015-04-27 00:45:12 +02:00
|
|
|
depth: 2
|
2015-04-27 00:30:25 +02:00
|
|
|
|
2015-01-24 08:51:54 +01:00
|
|
|
addons:
|
2015-04-26 22:11:04 +02:00
|
|
|
postgresql: "9.4"
|
2015-04-26 20:35:47 +02:00
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
2015-04-27 00:30:25 +02:00
|
|
|
- llvm-toolchain-precise-3.6
|
2015-04-26 20:35:47 +02:00
|
|
|
packages:
|
2015-04-27 00:30:25 +02:00
|
|
|
- clang-3.6
|
2014-08-22 01:36:55 +02:00
|
|
|
|
2015-04-26 22:06:20 +02:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- mason_packages
|
2015-04-27 00:30:25 +02:00
|
|
|
- $HOME/.ccache
|
2015-04-26 22:06:20 +02:00
|
|
|
|
2015-01-27 07:39:52 +01:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
2015-04-27 00:30:25 +02:00
|
|
|
env: JOBS=8 COVERAGE=true
|
2015-01-27 07:39:52 +01:00
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
2015-01-28 00:21:40 +01:00
|
|
|
env: JOBS=6
|
2015-04-26 22:11:04 +02:00
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
|
|
|
env: JOBS=8
|
2015-01-27 07:39:52 +01:00
|
|
|
|
2015-03-11 18:24:33 +01:00
|
|
|
before_install:
|
|
|
|
- export COVERAGE=${COVERAGE:-false}
|
|
|
|
|
2014-08-22 01:36:55 +02:00
|
|
|
install:
|
2015-04-26 20:35:47 +02: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;
|
2015-04-27 00:30:25 +02:00
|
|
|
export CXX="ccache clang++-3.6";
|
|
|
|
export CC="ccache clang-3.6";
|
2015-04-27 01:03:47 +02:00
|
|
|
export PYTHONPATH=$(pwd)/mason_packages/.link/lib/python2.7/site-packages;
|
2015-04-26 20:35:47 +02:00
|
|
|
fi;
|
2013-11-22 09:52:49 +01:00
|
|
|
|
2014-08-22 02:01:51 +02:00
|
|
|
script:
|
2015-01-23 23:04:32 +01:00
|
|
|
- source bootstrap.sh
|
2015-03-12 17:17:53 +01:00
|
|
|
- if [[ ${COVERAGE} == true ]]; then ./configure CUSTOM_LDFLAGS='--coverage' CUSTOM_CXXFLAGS='--coverage' CUSTOM_CFLAGS='--coverage' DEBUG=True; else ./configure; fi;
|
|
|
|
- make
|
2015-04-26 20:23:02 +02:00
|
|
|
- git clone --depth=1 https://github.com/mapnik/test-data test-data
|
2015-03-12 17:17:53 +01:00
|
|
|
- git clone --depth=1 https://github.com/mapbox/mapnik-test-data tests/data/mapnik-test-data
|
|
|
|
- make test
|
2015-04-27 01:03:47 +02:00
|
|
|
- PYTHONUSERBASE=$(pwd)/mason_packages/.link pip install --user cpp-coveralls
|
2015-04-26 22:07:17 +02:00
|
|
|
- if [[ ${COVERAGE} == true ]]; then ./mason_packages/.link/bin/cpp-coveralls --build-root . --gcov-options '\-lp' --exclude mason_packages --exclude .sconf_temp --exclude benchmark --exclude deps --exclude scons --exclude test --exclude demo --exclude docs --exclude fonts --exclude utils > /dev/null; fi;
|
2015-03-11 19:52:16 +01:00
|
|
|
- if [[ ${COVERAGE} != true ]]; then make bench; fi;
|