DEV Community

Hidenori FUJIMURA
Hidenori FUJIMURA

Posted on

How to install tippecanoe in CircleCI

halsk is running tippecanoe in CircleCI. This is how he installed tippecanoe.

    steps:
      - checkout
      - run:
          name: install dependencies
          command: |
            git clone https://github.com/mapbox/tippecanoe.git
            cd tippecanoe
            make -j
            sudo make install
Enter fullscreen mode Exit fullscreen mode

Latest comments (0)