2016-09-02 01:59:18 +02:00
|
|
|
language: generic
|
2012-09-02 13:48:49 +02:00
|
|
|
|
2015-04-27 00:30:25 +02:00
|
|
|
git:
|
2015-04-30 17:42:31 +02:00
|
|
|
depth: 10
|
2016-01-24 18:34:28 +01:00
|
|
|
submodules: false
|
2015-04-27 00:30:25 +02:00
|
|
|
|
2015-04-28 04:23:47 +02:00
|
|
|
env:
|
|
|
|
global:
|
2016-03-04 21:09:09 +01:00
|
|
|
- CCACHE_TEMPDIR=/tmp/.ccache-temp
|
|
|
|
- CCACHE_COMPRESS=1
|
|
|
|
- HEAVY_JOBS="2"
|
2016-03-16 23:51:40 +01:00
|
|
|
- PREFIX=/tmp/mapnik
|
2016-03-17 01:01:28 +01:00
|
|
|
- secure: "F6ivqDNMBQQnrDGA9+7IX+GDswuIqQQd7YPJdQqa2Ked9jddAQDeJClb05ig3JlwfOlYLGZOd43ZX0pKuMtI2Gbkwz211agGP9S3YunwlRg8iWtJlO5kYFUdKCmJNhjg4icfkGELCgwXn+zuEWFSLpkPcjqAFKFlQrIJeAJJgKM="
|
2015-01-24 08:51:54 +01:00
|
|
|
addons:
|
2015-04-26 22:11:04 +02:00
|
|
|
postgresql: "9.4"
|
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
|
|
|
|
2017-09-10 17:19:04 +02:00
|
|
|
dist: precise
|
|
|
|
|
2015-01-27 07:39:52 +01:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
2016-03-04 20:29:05 +01:00
|
|
|
sudo: false
|
2016-03-04 21:09:09 +01:00
|
|
|
compiler: ": clang"
|
2016-11-29 21:03:34 +01:00
|
|
|
env: JOBS=4 CXX="ccache g++-6" CC="gcc-6"
|
2016-01-30 00:31:13 +01:00
|
|
|
addons:
|
2016-06-15 06:25:33 +02:00
|
|
|
apt:
|
|
|
|
sources: [ 'ubuntu-toolchain-r-test']
|
2016-11-29 21:03:34 +01:00
|
|
|
packages: [ 'libstdc++-6-dev', 'g++-6', 'xutils-dev']
|
|
|
|
- os: linux
|
|
|
|
sudo: false
|
|
|
|
compiler: ": clang"
|
2017-11-09 19:07:26 +01:00
|
|
|
env: JOBS=8 CXX="ccache clang++-3.9 -Qunused-arguments" CC="clang-3.9" ENABLE_GLIBC_WORKAROUND=True TRIGGER=true
|
2016-11-29 21:03:34 +01:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources: [ 'ubuntu-toolchain-r-test']
|
|
|
|
packages: [ 'libstdc++-4.9-dev', 'xutils-dev']
|
2016-03-04 20:29:05 +01:00
|
|
|
- os: linux
|
|
|
|
sudo: false
|
2016-03-04 21:09:09 +01:00
|
|
|
compiler: ": clang-coverage"
|
2016-11-29 21:03:34 +01:00
|
|
|
env: JOBS=8 COVERAGE=true CXX="ccache clang++-3.9 -Qunused-arguments" CC="clang-3.9"
|
2016-03-04 20:29:05 +01:00
|
|
|
addons:
|
2016-06-15 06:25:33 +02:00
|
|
|
apt:
|
|
|
|
sources: [ 'ubuntu-toolchain-r-test']
|
2016-11-29 21:03:34 +01:00
|
|
|
packages: ['libstdc++-4.9-dev', 'xutils-dev' ]
|
2015-09-24 17:19:48 +02:00
|
|
|
- os: osx
|
2016-05-09 19:03:50 +02:00
|
|
|
compiler: ": clang-osx"
|
2016-03-04 20:29:05 +01:00
|
|
|
# https://docs.travis-ci.com/user/languages/objective-c/#Supported-OS-X-iOS-SDK-versions
|
2016-03-02 21:47:32 +01:00
|
|
|
osx_image: xcode7.3 # upgrades clang from 6 -> 7
|
2017-03-15 22:15:22 +01:00
|
|
|
env: JOBS=4 CXX="ccache clang++ -Qunused-arguments"
|
2015-01-27 07:39:52 +01:00
|
|
|
|
2015-03-11 18:24:33 +01:00
|
|
|
before_install:
|
2016-07-20 14:09:54 +02:00
|
|
|
# workaround travis rvm bug
|
|
|
|
# http://superuser.com/questions/1044130/why-am-i-having-how-can-i-fix-this-error-shell-session-update-command-not-f
|
|
|
|
- |
|
|
|
|
if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
|
|
|
|
rvm get head || true
|
|
|
|
fi
|
2016-02-18 15:40:13 +01:00
|
|
|
- source scripts/travis-common.sh
|
2017-03-11 01:50:08 +01:00
|
|
|
- export PATH=${PREFIX}/bin:$(pwd)/mason_packages/.link/bin:${PATH}
|
2015-03-11 18:24:33 +01:00
|
|
|
- export COVERAGE=${COVERAGE:-false}
|
2015-04-29 00:30:18 +02:00
|
|
|
- export MASON_PUBLISH=${MASON_PUBLISH:-false}
|
2016-01-30 05:04:42 +01:00
|
|
|
- export BENCH=${BENCH:-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
|
2017-10-13 09:47:26 +02:00
|
|
|
- git_submodule_update --init
|
2015-03-11 18:24:33 +01:00
|
|
|
|
2014-08-22 01:36:55 +02:00
|
|
|
install:
|
2016-03-30 02:16:08 +02:00
|
|
|
- on 'osx' export DATA_PATH=$(brew --prefix)/var/postgres
|
|
|
|
- on 'osx' rm -rf ${DATA_PATH}
|
|
|
|
- on 'osx' initdb ${DATA_PATH} -E utf8
|
|
|
|
- on 'osx' pg_ctl -w start -l postgres.log --pgdata ${DATA_PATH};
|
|
|
|
- on 'osx' cat postgres.log;
|
2016-02-18 15:40:13 +01:00
|
|
|
- on 'osx' createuser -s postgres
|
|
|
|
- psql -c 'create database template_postgis;' -U postgres
|
|
|
|
- psql -c 'create extension postgis;' -d template_postgis -U postgres
|
2017-03-11 01:50:08 +01:00
|
|
|
- enabled ${COVERAGE} curl -S -f https://codecov.io/bash -o codecov
|
|
|
|
- enabled ${COVERAGE} chmod +x codecov
|
2013-11-22 09:52:49 +01:00
|
|
|
|
2016-02-18 15:40:13 +01:00
|
|
|
before_script:
|
2015-01-23 23:04:32 +01:00
|
|
|
- source bootstrap.sh
|
2016-06-15 06:58:32 +02:00
|
|
|
- |
|
|
|
|
if [[ $(uname -s) == 'Linux' ]]; then
|
2017-03-15 17:44:33 +01:00
|
|
|
mason install clang++ 3.9.1
|
|
|
|
export PATH=$(mason prefix clang++ 3.9.1)/bin:${PATH}
|
|
|
|
mason install llvm-cov 3.9.1
|
|
|
|
export PATH=$(mason prefix llvm-cov 3.9.1)/bin:${PATH}
|
2016-11-29 21:03:34 +01:00
|
|
|
which llvm-cov
|
2017-03-15 17:44:33 +01:00
|
|
|
export LLVM_COV="$(mason prefix llvm-cov 3.9.1)/bin/llvm-cov"
|
2016-06-15 06:58:32 +02:00
|
|
|
fi
|
2016-03-04 22:41:15 +01:00
|
|
|
- ccache --version
|
|
|
|
- ccache -p || true
|
|
|
|
- ccache --show-stats || true
|
2016-02-18 15:40:13 +01:00
|
|
|
- commit_message_parse
|
|
|
|
|
|
|
|
script:
|
|
|
|
- export SCONSFLAGS='--debug=time'
|
2017-11-09 19:07:26 +01:00
|
|
|
- configure BENCHMARK=${BENCH} ENABLE_GLIBC_WORKAROUND=${ENABLE_GLIBC_WORKAROUND:-False}
|
2016-06-15 06:15:50 +02:00
|
|
|
- cat config.log
|
2016-09-05 15:54:40 +02:00
|
|
|
# we limit the `make` to 40 min
|
2016-09-02 21:09:19 +02:00
|
|
|
# to ensure that slow builds still upload their
|
|
|
|
# ccache results and therefore should be faster
|
2016-09-03 02:47:40 +02:00
|
|
|
# (and might work) for the next build
|
2016-09-05 15:54:40 +02:00
|
|
|
- DURATION=2400
|
2016-09-03 18:32:20 +02:00
|
|
|
- scripts/travis-command-wrapper.py -s "date" -i 120 --deadline=$(( $(date +%s) + ${DURATION} )) make
|
2017-11-09 19:05:12 +01:00
|
|
|
# dump glibcxx symbols >= 3.4.20 (if this returns output
|
|
|
|
# then it means the binaries will not run on ubuntu trusty without upgrading libstdc++)
|
|
|
|
- nm src/libmapnik* | grep "GLIBCXX_3.4.2[0-9]" || true
|
2016-12-02 23:05:16 +01:00
|
|
|
- RESULT=0
|
|
|
|
- make test || RESULT=$?
|
|
|
|
# we allow visual failures with g++ for now: https://github.com/mapnik/mapnik/issues/3567
|
|
|
|
- if [[ ${RESULT} != 0 ]] && [[ ${CXX} =~ 'clang++' ]]; then false; fi;
|
2016-06-15 06:58:32 +02:00
|
|
|
- enabled ${COVERAGE} coverage
|
2016-02-18 15:40:13 +01:00
|
|
|
- enabled ${BENCH} make bench
|
|
|
|
|
|
|
|
after_success:
|
2016-03-17 01:01:28 +01:00
|
|
|
- enabled ${TRIGGER} trigger_downstream
|