mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-04-03 09:09:06 +00:00
21 lines
409 B
YAML
21 lines
409 B
YAML
language: c
|
|
|
|
sudo: false
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
packages: [ 'protobuf-compiler', 'libprotobuf-dev' ]
|
|
- os: osx
|
|
|
|
|
|
install:
|
|
- if [[ $(uname -s) == 'Darwin' ]]; then brew install protobuf; fi;
|
|
- make
|
|
|
|
script:
|
|
- echo '{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[0,0]}}' > test.json
|
|
- ./tippecanoe -o test.mbtiles test.json
|