forked from biolab/orange3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
52 lines (43 loc) · 1 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
language: python
sudo: false
dist: trusty
matrix:
include:
- &pylint
env: RUN_PYLINT=true
python: '3.4'
addons: { apt: { packages: [] } }
cache: {}
- python: '3.4'
- python: '3.5'
- python: 'nightly'
allow_failures:
- python: 'nightly'
- *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
- postgresql-server-dev-9.1
- libqt4-dev
- gfortran
- xvfb
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