forked from aiortc/aiortc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
51 lines (51 loc) · 1000 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
48
49
50
51
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"
- env: BUILD=test
language: generic
os: osx
- env: BUILD=test
python: "3.8"
- env: BUILD=test CRYPTOGRAPHY_NO_BINARY=1
python: "3.8"
- env: BUILD=test
python: "3.7"
- env: BUILD=test CRYPTOGRAPHY_NO_BINARY=1
python: "3.7"
- env: BUILD=test
python: "3.6"
- env: BUILD=test CRYPTOGRAPHY_NO_BINARY=1
python: "3.6"
- env: BUILD=test
python: "3.5"
dist: trusty
- env: BUILD=test CRYPTOGRAPHY_NO_BINARY=1
dist: trusty
python: "3.5"
- env: BUILD=sdist
install: pip install twine
python: "3.6"
script: .travis/script
sudo: true