forked from cexen/py-simple-audio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
47 lines (45 loc) · 982 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
38
39
40
41
42
43
44
45
46
47
matrix:
include:
- os: linux
addons:
apt:
packages:
- libasound2-dev
language: python
python: '3.8'
before_install:
- ./travis/package_deps.sh
install: ./travis/linux_build.sh
script:
- python3 setup.py test
- ./travis/format_checks.sh
- os: osx
language: objective-c
env:
- PY_VER=3.7.5
- PY_PKG=python-3.7.5-macosx10.6.pkg
before_install:
- ./travis/osx_install_py3.sh
- ./travis/package_deps.sh
install: ./travis/osx_build.sh
script:
- python3 setup.py test
- os: osx
language: objective-c
env:
- PY_VER=3.8.0
- PY_PKG=python-3.8.0-macosx10.9.pkg
before_install:
- ./travis/osx_install_py3.sh
- ./travis/package_deps.sh
install: ./travis/osx_build.sh
script:
- python3 setup.py test
deploy:
- provider: script
skip_cleanup: true
script: ./travis/deploy.sh
on:
tags: true
notifications:
email: false