forked from Quasars/orange-spectroscopy-prototypes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (29 loc) · 835 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
language: python
dist: xenial
addons:
apt:
packages:
- libxkbcommon-x11-0 # for PyQt 5.12
matrix:
include:
- python: '3.6'
env: ORANGE="release" ORANGE_SPEC="release" RUN_PYLINT=true
- python: '3.6'
env: ORANGE="release" ORANGE_SPEC="release"
- python: '3.6'
env: ORANGE="master" ORANGE_SPEC="master"
cache:
apt: true
pip: true
directories:
- $TRAVIS_BUILD_DIR/pyqt
install:
# Update pip to be able to install wheel dependencies
- pip install -U pip wheel codecov
- pip install pyqt5~=5.12.0 pyqtwebengine~=5.12.0
- source $TRAVIS_BUILD_DIR/.travis/install_orange.sh
- source $TRAVIS_BUILD_DIR/.travis/install_orange_spec.sh
- pip install -e .
- pip freeze
script:
- source $TRAVIS_BUILD_DIR/.travis/stage_script.sh