forked from beancount/fava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
54 lines (52 loc) · 1.24 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
language: python
install: "pip install tox"
script: "tox -e $TRAVIS_BUILD"
python: 3.5
env: TRAVIS_BUILD=py35
matrix:
allow_failures:
- env: TRAVIS_BUILD=deploy
fast_finish: true
include:
- python: 3.5
env: TRAVIS_BUILD=coverage
before_install: "pip install codecov"
after_success: "codecov"
- python: 3.5
dist: trusty
sudo: false
env: TRAVIS_BUILD=lint
before_install: "nvm use stable"
script: "make && make lint"
- python: 3.5
dist: trusty
sudo: required
before_install: "sudo apt-get install --no-install-recommends -y icnsutils graphicsmagick xz-utils"
install: |
. $HOME/.nvm/nvm.sh
nvm install stable
nvm use stable
pip install pyinstaller
pip install -e .
script: |
make
make pyinstaller
make -C gui dist
env: TRAVIS_BUILD=deploy
- language: node
node_js: node
os: osx
install: |
brew update
brew install python3
pip3 install pyinstaller
pip3 install -e .
script: |
make
make pyinstaller
make -C gui dist
env: TRAVIS_BUILD=deploy
cache:
directories:
- $HOME/.cache
- $HOME/Library/Caches