-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
82 lines (71 loc) · 1.85 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
language: cpp
matrix:
include:
# QT4 based build with Python 2 // using a sudo environment
- os: linux
env: QT_VERSION=4
sudo: true
dist: precise
group: legacy
addons:
postgresql: "9.1"
compiler:
- clang
# QT5 based build with Python 3 // using container based builds and prebuild binary dependencies in osgeo4travis
- os: linux
env: QT_VERSION=5
sudo: false
cache:
apt: true
ccache: true
compiler:
- clang
addons:
postgresql: "9.4"
apt:
sources:
- llvm-toolchain-precise-3.6
- ubuntu-toolchain-r-test
- george-edison55-precise-backports # doxygen 1.8.3
packages:
- doxygen
- bison
- flex
- graphviz
- libpq-dev
- libfcgi-dev
- pkg-config
- poppler-utils
- python3
- python3-dev
- python3-setuptools
- txt2tags
- xvfb
- flip
- clang-3.6
# OSX based build with QT4 and Python 2
- os: osx
git:
depth: 30
notifications:
irc: "chat.freenode.net#qgis-test"
on_failure: change
on_success: change
skip_join: true
notifications:
webhooks:
urls:
- 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
before_install:
- ./ci/travis/${TRAVIS_OS_NAME}/before_install.sh
install:
- ./ci/travis/${TRAVIS_OS_NAME}/install.sh
before_script:
- ./ci/travis/${TRAVIS_OS_NAME}/before_script.sh
script:
- ./ci/travis/${TRAVIS_OS_NAME}/script.sh
after_script:
- ./ci/travis/${TRAVIS_OS_NAME}/after_script.sh