tippecanoe/.travis.yml

83 lines
2.7 KiB
YAML
Raw Normal View History

language: node_js
2017-08-30 23:03:00 +00:00
node_js:
- "6"
2015-12-20 23:09:35 +00:00
sudo: false
matrix:
2015-12-20 23:11:15 +00:00
include:
# debug+integer-santizer build
- os: linux
compiler: clang
2016-06-07 00:21:29 +00:00
env: CLANG_VERSION='3.8.0' BUILDTYPE=Debug CC="clang-3.8" CXX="clang++-3.8" CXXFLAGS="-fsanitize=integer" CFLAGS="-fsanitize=integer" LDFLAGS="-fsanitize=integer"
addons:
apt:
2016-06-07 00:21:29 +00:00
sources: ['ubuntu-toolchain-r-test' ]
2016-06-07 00:27:32 +00:00
packages: [ 'libstdc++6','libstdc++-5-dev' ]
# debug+leak+address-sanitizer build
- os: linux
compiler: clang
env: CLANG_VERSION='3.8.0' BUILDTYPE=Debug ASAN_OPTIONS=detect_leaks=1 CC="clang-3.8" CXX="clang++-3.8" CXXFLAGS="-fsanitize=address" CFLAGS="-fsanitize=address" LDFLAGS="-fsanitize=address" FEWER=true
addons:
apt:
2016-06-07 00:21:29 +00:00
sources: ['ubuntu-toolchain-r-test' ]
2016-06-07 00:27:32 +00:00
packages: [ 'libstdc++6','libstdc++-5-dev' ]
2016-04-26 22:39:42 +00:00
# coverage+debug build
- os: linux
compiler: clang
2016-06-07 00:21:29 +00:00
env: CLANG_VERSION='3.8.0' BUILDTYPE=Debug CC="clang-3.8" CXX="clang++-3.8" CXXFLAGS="--coverage" CFLAGS="--coverage" LDFLAGS="--coverage"
2016-04-26 22:39:42 +00:00
addons:
apt:
2016-06-07 00:21:29 +00:00
sources: ['ubuntu-toolchain-r-test' ]
2016-06-07 00:27:32 +00:00
packages: [ 'libstdc++6','libstdc++-5-dev' ]
2016-04-26 22:39:42 +00:00
# release+linux+g++
2015-12-20 23:09:35 +00:00
- os: linux
compiler: gcc
2016-04-26 22:39:42 +00:00
env: BUILDTYPE=Release CC="gcc-4.9" CXX="g++-4.9"
2015-12-23 00:55:21 +00:00
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
2016-04-26 20:50:08 +00:00
packages: [ 'g++-4.9' ]
2016-04-26 22:39:42 +00:00
# release+linux+clang++
- os: linux
compiler: clang
2016-06-07 00:21:29 +00:00
env: CLANG_VERSION='3.8.0' BUILDTYPE=Release CC="clang-3.8" CXX="clang++-3.8"
addons:
apt:
2016-06-07 00:21:29 +00:00
sources: ['ubuntu-toolchain-r-test' ]
2016-06-07 00:27:32 +00:00
packages: [ 'libstdc++6','libstdc++-5-dev' ]
2016-04-26 22:39:42 +00:00
# release+osx
2015-12-23 00:30:28 +00:00
- os: osx
compiler: clang
2016-04-26 22:39:42 +00:00
env: BUILDTYPE=Release
2016-04-26 22:46:58 +00:00
# debug+osx
- os: osx
compiler: clang
env: BUILDTYPE=Debug
2015-12-20 23:09:35 +00:00
2016-06-07 00:21:29 +00:00
before_install:
- DEPS_DIR="${TRAVIS_BUILD_DIR}/deps"
- export PATH=${DEPS_DIR}/bin:${PATH} && mkdir -p ${DEPS_DIR}
- |
if [[ ${CLANG_VERSION:-false} != false ]]; then
export CCOMPILER='clang'
export CXXCOMPILER='clang++'
CLANG_URL="https://mason-binaries.s3.amazonaws.com/${TRAVIS_OS_NAME}-x86_64/clang/${CLANG_VERSION}.tar.gz"
travis_retry wget --quiet -O - ${CLANG_URL} | tar --strip-components=1 -xz -C ${DEPS_DIR}
fi
2015-12-20 23:09:35 +00:00
install:
- BUILDTYPE=${BUILDTYPE} make -j
2015-12-20 23:09:35 +00:00
script:
- npm install geobuf
- if [ -n "${FEWER}" ]; then
BUILDTYPE=${BUILDTYPE} make fewer-tests; else
BUILDTYPE=${BUILDTYPE} make test geobuf-test;
fi
2015-12-23 00:55:21 +00:00
- if [ -n "${COVERAGE}" ]; then
2016-04-26 22:39:42 +00:00
/usr/bin/llvm-cov-3.5 -lp *.o;
2015-12-23 00:55:21 +00:00
pip install --user cpp-coveralls;
2016-04-26 22:39:42 +00:00
~/.local/bin/coveralls --no-gcov -i ./ --exclude clipper;
2015-12-23 00:55:21 +00:00
fi