swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: 5d701913ab4a54b625042e1d21f2c851675706d4 authored by Eric Fischer on 29 March 2016, 22:08:06 UTC
Merge pull request #199 from mapbox/named-layers
Tip revision: 5d70191
.travis.yml
language: c

sudo: false

matrix:
  include:
    - os: linux
      compiler: gcc
      env: COVERAGE=gcov-4.9
      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' ]
    - os: osx
      compiler: clang


install:
 - if [[ $(uname -s) == 'Darwin' ]]; then brew install protobuf; fi;
 - if [ -n "${COVERAGE}" ]; then
       export CXX=g++-4.9;
       export CC=gcc-4.9;
       export CXXFLAGS="--coverage -g";
       export CFLAGS="--coverage -g";
       export LDFLAGS="--coverage";
   fi;
 - make

script:
 - make test
 - if [ -n "${COVERAGE}" ]; then
       rm vector_tile.pb.o;
       ${COVERAGE} -lp *.o;
       pip install --user cpp-coveralls;
       ~/.local/bin/coveralls --no-gcov -i ./ --exclude clipper --exclude vector_tile.pb.cc --exclude vector_tile.pb.h;
   fi
back to top