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-30 17:42:31 +02:00
|
|
|
depth: 10
|
2015-04-30 16:25:24 +02:00
|
|
|
submodules: true
|
2015-04-27 00:30:25 +02:00
|
|
|
|
2015-04-28 04:23:47 +02:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- secure: "N3a5nzzsgpuu45k8qWdYsHNxrSnqeAGLTOYpfYoAH7B94vuf7pa7XV1tQjXbxrnx2D6ryTdtUtyRKwy7zXbwXxGt4DpczWEo8f6DUd6+obAp3kdnXABg2Sj4oA7KMs0F0CmoADy0jdUZD5YyOJHu64LCIIgzEQ9q49PFMNbU3IE="
|
|
|
|
- secure: "iQYPNpMtejcgYeUkWZGIWz1msIco5qydJrhZTSCQOYahAQerdT7q5WZEpEo3G6IWOGgO1eo7GFuY8DvqQjw1+jC9b9mhkRNdo3LhGTKS9Gsbl5Q27k0rjlaFZmmQHrfPlQJwhfAIp+KLugHtQw5bCoLh+95E3j0F0DayF1tuJ3s="
|
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-30 17:24:59 +02:00
|
|
|
- llvm-toolchain-precise-3.5
|
2015-04-26 20:35:47 +02:00
|
|
|
packages:
|
2015-04-30 17:24:59 +02:00
|
|
|
- clang-3.5
|
2014-08-22 01:36:55 +02:00
|
|
|
|
2015-04-26 22:06:20 +02:00
|
|
|
cache:
|
|
|
|
directories:
|
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-29 00:30:18 +02:00
|
|
|
env: JOBS=8 MASON_PUBLISH=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-09-24 17:19:48 +02:00
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
|
|
|
env: JOBS=8 MASON_PUBLISH=true
|
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
|
|
|
env: JOBS=8 COVERAGE=true
|
2015-01-27 07:39:52 +01:00
|
|
|
|
2015-03-11 18:24:33 +01:00
|
|
|
before_install:
|
|
|
|
- export COVERAGE=${COVERAGE:-false}
|
2015-04-29 00:30:18 +02:00
|
|
|
- export MASON_PUBLISH=${MASON_PUBLISH:-false}
|
2015-04-30 16:25:01 +02:00
|
|
|
- if [[ ${TRAVIS_BRANCH} != 'master' ]]; then export MASON_PUBLISH=false; fi
|
2015-05-15 17:48:05 +02:00
|
|
|
- if [[ ${TRAVIS_PULL_REQUEST} != 'false' ]]; then export MASON_PUBLISH=false; fi
|
2015-03-11 18:24:33 +01:00
|
|
|
|
2014-08-22 01:36:55 +02:00
|
|
|
install:
|
2015-04-26 20:35:47 +02:00
|
|
|
- if [[ $(uname -s) == 'Linux' ]]; then
|
2015-04-30 17:24:59 +02:00
|
|
|
export CXX="ccache clang++-3.5 -Qunused-arguments";
|
|
|
|
export CC="ccache clang-3.5 -Qunused-arguments";
|
2015-04-30 16:25:01 +02:00
|
|
|
export PYTHONPATH=$(pwd)/mason_packages/.link/lib/python2.7/site-packages;
|
2015-04-27 15:36:41 +02:00
|
|
|
else
|
2015-10-30 22:36:01 +01:00
|
|
|
brew rm postgis --force;
|
|
|
|
brew install postgis --force;
|
|
|
|
pg_ctl -w start -l postgres.log --pgdata /usr/local/var/postgres;
|
|
|
|
createuser -s postgres;
|
2015-04-30 16:25:01 +02:00
|
|
|
export PYTHONPATH=$(pwd)/mason_packages/.link/lib/python/site-packages;
|
|
|
|
fi
|
2015-10-30 22:36:01 +01:00
|
|
|
- psql -c 'create database template_postgis;' -U postgres;
|
|
|
|
- psql -c 'create extension postgis;' -d template_postgis -U postgres;
|
2015-04-28 17:33:32 +02:00
|
|
|
- if [[ ${COVERAGE} == true ]]; then
|
2015-04-30 16:25:01 +02:00
|
|
|
PYTHONUSERBASE=$(pwd)/mason_packages/.link pip install --user cpp-coveralls;
|
|
|
|
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-04-30 16:25:01 +02:00
|
|
|
- if [[ ${COVERAGE} == true ]]; then
|
|
|
|
./configure CUSTOM_LDFLAGS='--coverage' CUSTOM_CXXFLAGS='--coverage' CUSTOM_CFLAGS='--coverage' DEBUG=True;
|
2015-04-29 15:29:45 +02:00
|
|
|
elif [[ ${MASON_PUBLISH} == true ]]; then
|
2015-04-30 16:25:01 +02:00
|
|
|
export MASON_NAME=mapnik;
|
|
|
|
export MASON_VERSION=latest;
|
|
|
|
export MASON_LIB_FILE=lib/libmapnik-wkt.a;
|
|
|
|
source ./.mason/mason.sh;
|
2015-06-16 18:11:34 +02:00
|
|
|
./configure PREFIX=${MASON_PREFIX} PATH_REPLACE='' MAPNIK_BUNDLED_SHARE_DIRECTORY=True RUNTIME_LINK='static';
|
2015-04-28 04:23:47 +02:00
|
|
|
else
|
2015-04-30 16:25:01 +02:00
|
|
|
./configure;
|
|
|
|
fi
|
2015-03-12 17:17:53 +01:00
|
|
|
- make
|
2015-10-21 08:27:39 +02:00
|
|
|
- make test || TEST_RESULT=$?
|
2015-04-30 16:25:01 +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
|
|
|
|
- if [[ ${COVERAGE} != true ]]; then
|
|
|
|
make bench;
|
|
|
|
fi
|
2015-10-21 08:27:39 +02:00
|
|
|
- if [[ ${TEST_RESULT} != 0 ]]; then exit $TEST_RESULT ; fi;
|
2015-04-29 00:30:18 +02:00
|
|
|
- if [[ ${MASON_PUBLISH} == true ]]; then
|
2015-04-30 16:25:01 +02:00
|
|
|
./mason_latest.sh build;
|
|
|
|
./mason_latest.sh link;
|
|
|
|
./mason_latest.sh publish;
|
|
|
|
fi
|