QGIS/.travis.yml

50 lines
861 B
YAML
Raw Normal View History

2014-11-13 12:28:12 +01:00
language: cpp
sudo: required
dist: precise
group: legacy
2015-08-12 23:36:07 +10:00
os:
- linux
- osx
2014-11-13 12:28:12 +01:00
compiler:
- clang
2014-11-13 12:28:12 +01:00
2015-07-27 14:35:37 +02:00
git:
depth: 30
2015-07-27 14:35:37 +02:00
2014-11-13 12:28:12 +01:00
cache: apt
notifications:
irc: "chat.freenode.net#qgis-test"
on_failure: change
on_success: change
skip_join: true
notifications:
webhooks:
urls:
2015-06-15 09:36:39 +02:00
- https://webhooks.gitter.im/e/467e3aff72e344d1dae3
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # default: never
addons:
postgresql: "9.1"
2014-11-14 18:36:40 +01:00
before_install:
2015-08-12 23:39:02 +10:00
- ./ci/travis/${TRAVIS_OS_NAME}/before_install.sh
2014-11-14 18:36:40 +01:00
install:
2015-08-12 23:39:02 +10:00
- ./ci/travis/${TRAVIS_OS_NAME}/install.sh
before_script:
2015-08-12 23:39:02 +10:00
- ./ci/travis/${TRAVIS_OS_NAME}/before_script.sh
2014-11-13 12:28:12 +01:00
2015-08-12 23:36:07 +10:00
script:
2015-08-12 23:39:02 +10:00
- ./ci/travis/${TRAVIS_OS_NAME}/script.sh
after_script:
- ./ci/travis/${TRAVIS_OS_NAME}/after_script.sh