forked from biolab/orange3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (34 loc) · 877 Bytes
/
.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
language: python
sudo: false
dist: trusty
matrix:
include:
- env: RUN_PYLINT=true
python: '3.4'
cache: {}
- env: BUILD_DOCS=true
python: '3.5'
script: source $TRAVIS_BUILD_DIR/.travis/build_doc.sh
- python: '3.4'
env: PYQT4=true
- python: '3.5'
env: UPLOAD_COVERAGE=true
- python: '3.6'
fast_finish: true
cache:
apt: true
pip: true
ccache: true
directories:
- $TRAVIS_BUILD_DIR/postgres
- $TRAVIS_BUILD_DIR/pyqt
before_cache:
before_install:
- set -e # fail on any error
- source $TRAVIS_BUILD_DIR/.travis/util.sh
install:
- source $TRAVIS_BUILD_DIR/.travis/stage_install.sh
script:
- source $TRAVIS_BUILD_DIR/.travis/stage_script.sh
after_success:
- source $TRAVIS_BUILD_DIR/.travis/stage_after_success.sh