2012-09-02 13:48:49 +02:00
|
|
|
language: cpp
|
|
|
|
|
2015-01-23 23:21:54 +01:00
|
|
|
sudo: false
|
|
|
|
|
2015-01-24 08:51:54 +01:00
|
|
|
addons:
|
|
|
|
postgresql: "9.3"
|
2015-04-26 20:35:47 +02:00
|
|
|
# http://docs.travis-ci.com/user/apt/
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
- llvm-toolchain-precise-3.5
|
|
|
|
packages:
|
|
|
|
- clang-3.5
|
2014-08-22 01:36:55 +02:00
|
|
|
|
2015-01-27 07:39:52 +01:00
|
|
|
matrix:
|
|
|
|
include:
|
2015-03-11 18:24:33 +01:00
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
2015-04-23 09:31:55 +02:00
|
|
|
env: JOBS=8 COVERAGE=true
|
2015-01-27 07:39:52 +01:00
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
2015-04-23 09:31:55 +02:00
|
|
|
env: JOBS=8
|
2015-01-27 07:39:52 +01:00
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
2015-04-23 09:31:55 +02:00
|
|
|
env: JOBS=8
|
2015-01-27 07:39:52 +01:00
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
2015-01-28 00:21:40 +01:00
|
|
|
env: JOBS=6
|
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;
|
|
|
|
export CXX="clang++-3.5";
|
|
|
|
export CC="clang-3.5";
|
|
|
|
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-03-11 19:01:05 +01:00
|
|
|
- if [[ ${COVERAGE} == true ]]; then
|
|
|
|
brew install pyenv;
|
|
|
|
eval "$(pyenv init -)";
|
|
|
|
pyenv install 2.7.6;
|
|
|
|
pyenv global 2.7.6;
|
|
|
|
pyenv rehash;
|
|
|
|
pip install cpp-coveralls;
|
|
|
|
pyenv rehash;
|
|
|
|
fi;
|
2015-03-14 01:24:41 +01:00
|
|
|
- if [[ ${COVERAGE} == true ]]; then cpp-coveralls --build-root . --gcov-options '\-lp' --exclude mason_packages --exclude .sconf_temp --exclude benchmark --exclude deps --exclude scons --exclude tests --exclude py2cairo-1.10.0 --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;
|