2015-02-05 09:13:48 -05:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Configuration for continuous integration service at travis-ci.org
|
|
|
|
#
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
|
2015-01-13 10:54:25 -05:00
|
|
|
language: cpp
|
|
|
|
|
2015-08-28 06:42:03 -04:00
|
|
|
sudo: false
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
|
|
|
env: BUILD_TYPE=Dev
|
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
|
|
|
env: BUILD_TYPE=Release
|
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
|
|
|
env: BUILD_TYPE=Dev
|
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
|
|
|
env: BUILD_TYPE=Release
|
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
|
|
|
env: BUILD_TYPE=Dev
|
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
|
|
|
env: BUILD_TYPE=Release
|
|
|
|
|
|
|
|
# http://docs.travis-ci.com/user/apt/
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- boost-latest
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- g++-4.8
|
|
|
|
- gcc-4.8
|
|
|
|
- libboost1.55-dev
|
|
|
|
- libboost-program-options1.55-dev
|
|
|
|
- libgdal-dev
|
|
|
|
- libgeos++-dev
|
|
|
|
- libproj-dev
|
|
|
|
- libsparsehash-dev
|
|
|
|
- spatialite-bin
|
2015-01-13 10:54:25 -05:00
|
|
|
|
|
|
|
install:
|
2015-08-28 06:42:03 -04:00
|
|
|
- scripts/travis_install.sh
|
2015-01-13 10:54:25 -05:00
|
|
|
|
|
|
|
script:
|
2015-08-28 06:42:03 -04:00
|
|
|
- scripts/travis_script.sh
|
2015-01-13 10:54:25 -05:00
|
|
|
|