forked from aiortc/aiortc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
43 lines (43 loc) · 786 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
addons:
apt:
packages:
- libmp3lame-dev
- libopus-dev
- libvpx-dev
- libx264-dev
- yasm
homebrew:
packages:
- ffmpeg
- opus
- libvpx
update: true
cache:
directories: $HOME/.local
pip: true
dist: xenial
install: source .travis/install
language: python
matrix:
include:
- env: BUILD=lint
install: pip install black flake8 isort
python: "3.6"
- language: generic
os: osx
- python: "3.5"
dist: trusty
- env: CRYPTOGRAPHY_NO_BINARY=1
dist: trusty
python: "3.5"
- python: "3.6"
- env: CRYPTOGRAPHY_NO_BINARY=1
python: "3.6"
- python: "3.7"
- env: CRYPTOGRAPHY_NO_BINARY=1
python: "3.7"
- env: BUILD=sdist
install: pip install twine
python: "3.6"
script: .travis/script
sudo: true