mapnik/.travis.yml

32 lines
675 B
YAML
Raw Normal View History

2012-09-02 11:48:49 +00:00
language: cpp
2015-01-28 09:17:50 +00:00
sudo: false
2012-09-02 11:48:49 +00:00
2015-01-28 09:17:50 +00:00
addons:
postgresql: "9.3"
2015-01-28 09:17:50 +00:00
matrix:
include:
- os: osx
compiler: clang
2015-02-02 21:38:09 +00:00
env: JOBS=4
2015-01-28 09:17:50 +00:00
- os: linux
compiler: clang
2015-02-02 21:38:09 +00:00
env: JOBS=4
2015-01-28 09:17:50 +00:00
- os: linux
compiler: gcc
2015-02-02 21:38:09 +00:00
env: JOBS=2
install:
2015-01-28 09:17:50 +00: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 09:17:50 +00:00
- source bootstrap.sh
- ./configure
- cat config.log
- make
- make test
2015-02-02 21:38:09 +00:00
- make bench