tippecanoe/.travis.yml

43 lines
1.0 KiB
YAML
Raw Normal View History

2015-12-20 23:09:35 +00:00
language: c
sudo: false
matrix:
2015-12-20 23:11:15 +00:00
include:
2015-12-20 23:09:35 +00:00
- os: linux
compiler: gcc
2015-12-23 01:16:55 +00:00
env: COVERAGE=gcov-4.9
2015-12-23 00:55:21 +00:00
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: [ 'g++-4.9', 'protobuf-compiler', 'libprotobuf-dev' ]
- os: linux
compiler: clang
addons:
apt:
packages: [ 'protobuf-compiler', 'libprotobuf-dev' ]
2015-12-23 00:30:28 +00:00
- os: osx
compiler: clang
2015-12-20 23:09:35 +00:00
install:
2015-12-23 00:30:28 +00:00
- if [[ $(uname -s) == 'Darwin' ]]; then brew install protobuf; fi;
2015-12-23 00:55:21 +00:00
- if [ -n "${COVERAGE}" ]; then
2015-12-23 01:16:55 +00:00
export CXX=g++-4.9;
export CC=gcc-4.9;
export CXXFLAGS="--coverage -g";
export CFLAGS="--coverage -g";
2015-12-23 00:55:21 +00:00
export LDFLAGS="--coverage";
fi;
2015-12-20 23:09:35 +00:00
- make
script:
- echo '{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[0,0]}}' > test.json
- ./tippecanoe -o test.mbtiles test.json
2015-12-23 00:55:21 +00:00
- if [ -n "${COVERAGE}" ]; then
2015-12-23 01:12:58 +00:00
ls;
2015-12-23 00:55:21 +00:00
${COVERAGE} -lp *.o;
pip install --user cpp-coveralls;
~/.local/bin/coveralls --no-gcov -i ./;
fi