forked from biolab/orange3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
55 lines (46 loc) · 1.12 KB
/
.travis.yml
File metadata and controls
55 lines (46 loc) · 1.12 KB
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
language: python
sudo: false
matrix:
include:
- &pylint
env: RUN_PYLINT=true
python: '3.4'
addons: { apt: { packages: [] } }
cache: {}
- python: '3.4'
- python: '3.5'
- &docs
env: BUILD_DOCS=true
python: '3.4'
script: source $TRAVIS_BUILD_DIR/.travis/build_doc.sh
- python: '3.5'
env: PYQT5=true
dist: trusty
addons: { apt: { packages: [] } }
allow_failures:
- *pylint
fast_finish: true
cache:
apt: true
pip: true
ccache: true
directories:
- $TRAVIS_BUILD_DIR/postgres
- $TRAVIS_BUILD_DIR/pyqt
before_cache:
addons:
apt:
packages:
- libblas-dev
- liblapack-dev
- libqt4-dev
- gfortran
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