mapnik/.travis.yml

31 lines
663 B
YAML
Raw Normal View History

2012-09-02 13:48:49 +02:00
language: cpp
2015-01-28 10:17:50 +01:00
sudo: false
2012-09-02 13:48:49 +02:00
2015-01-28 10:17:50 +01:00
addons:
postgresql: "9.3"
2015-01-28 10:17:50 +01:00
matrix:
include:
- os: osx
compiler: clang
env: JOBS=12
- os: linux
compiler: clang
env: JOBS=12
- os: linux
compiler: gcc
env: JOBS=6
install:
2015-01-28 10:17:50 +01:00
- if [[ $(uname -s) == 'Linux' ]]; then psql -U postgres -c 'create database template_postgis;' -U postgres; psql -U postgres -c 'create extension postgis;' -d template_postgis -U postgres; fi;
- if [[ $(uname -s) == 'Darwin' ]]; then brew install bash; export PATH="$(brew --prefix)/bin":${PATH}; fi;
- echo `which bash`
script:
2015-01-28 10:17:50 +01:00
- source bootstrap.sh
- ./configure
- cat config.log
- make
- make test