-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.travis.yml
37 lines (31 loc) · 1022 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
sudo: required
dist: xenial
language: generic
matrix:
include:
- name: "Python 3.7.2"
os: windows
language: shell
before_install:
- choco install python --version 3.7.2
- choco install unzip
- choco install 7zip.portable
- python --version
- python -m pip install --upgrade pip
- pip3 install --upgrade pytest
- pip3 install codecov
- pip3 install pyinstaller
env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
before_install:
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then bash -xe travis/bootstrap-ubuntu.sh; fi
install:
- bash -xe travis/install.sh
script:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then bash -xe travis/build-dmg.sh; fi
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then cd AppImage; bash -xe galacteek-appimage-build; cd ..; fi
- if [ "$TRAVIS_OS_NAME" == "windows" ]; then bash -xe travis/build-pyinstaller.sh; fi
after_success:
- bash travis/upload-images.sh
branches:
except:
- /^(?i:continuous)$/