https://github.com/mapbox/tippecanoe
Raw File
Tip revision: f290794f228e23f56e7b5f792735211a47df4ae2 authored by Eric Fischer on 22 December 2015, 18:40:13 UTC
Bump version number
Tip revision: f290794
.travis.yml
language: c

sudo: false

matrix:
  include:
    - os: linux
      addons:
        apt:
          packages: [ 'protobuf-compiler', 'libprotobuf-dev' ]


install:
 - make

script:
 - echo '{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[0,0]}}' > test.json
 - ./tippecanoe -o test.mbtiles test.json
back to top