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