forked from wxWidgets/Phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
72 lines (59 loc) · 1.35 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
#
# Travis CI control file for building Phoenix
#
language: python
matrix:
include:
- os: linux
dist: trusty
sudo: required
python: 2.7
- os: linux
dist: precise
sudo: required
python: 2.7
- os: linux
dist: trusty
sudo: required
python: 3.4
- os: linux
dist: precise
sudo: required
python: 3.4
# redundant specification of `sudo` and `python` because of travis-ci.org's way of parsing `.travis.yml`
# Available build steps:
# 1. before_install
# 2. install
# 3. before_script
# 4. script
# 5. after_success or after_failure
# 6. after_script
# 7. OPTIONAL before_deploy
# 8. OPTIONAL deploy
# 9. OPTIONAL after_deploy
addons:
apt:
packages:
- libwebkitgtk-dev
- libjpeg-dev
- libtiff-dev
- libgtk2.0-dev
- libsdl1.2-dev
- libgstreamer-plugins-base0.10-dev
- freeglut3
- freeglut3-dev
- libnotify-dev
install:
- echo "****** travis install step"
- pip install -U pip
- pip install -U -r requirements.txt
- pip list
script:
- echo "****** travis script step"
- python build.py dox
- python build.py build_wx --jobs=4
- python build.py etg --nodoc
- python build.py sip
- python build.py build_py --jobs=4
- sudo python build.py install
# TODO: Add running of the tests