forked from PyAV-Org/PyAV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
164 lines (144 loc) · 3.72 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
language: python
sudo: false
addons:
apt:
packages:
# See: https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu
- autoconf
- automake
- build-essential
- cmake
- libass-dev
- libfreetype6-dev
- libjpeg-dev
- libtheora-dev
- libtool
- libvorbis-dev
- libx264-dev
- mercurial
- pkg-config
- texinfo
- wget
- yasm
- zlib1g-dev
homebrew:
packages:
- automake
- libass
- libjpeg
- libpng
- libtool
- libvorbis
- libvpx
- nasm
- opus
- shtool
- texi2html
- theora
- wget
- x264
cache:
directories:
- tests/assets # Cache files from the FATE suite.
- vendor/build/$LIBRARY # FFmpeg builds.
- venvs/$TRAVIS_OS_NAME.$TRAVIS_PYTHON_VERSION # Python packages.
matrix:
# There seems to be a bug in Travis that results in Mike getting piles of
# emails as the sub-jobs finish when `fast_finish` is enabled.
#fast_finish: true
include:
# Our primary targets are:
# - Python 3.6 and 2.7;
# - FFmpeg 4.1, 4.0, 3.4, 3.3, and 3.2 (i.e. major versions > 3.0 on the
# FFmpeg download page).
# Source linting.
- python: "3.6"
env: TESTSUITE=flake8
- python: "3.6"
env: TESTSUITE=isort
# Source distribution.
- python: "3.6"
env: TESTSUITE=sdist
# Python 3.6.
- python: "3.6"
env: LIBRARY=ffmpeg-4.1
os: linux
- python: "3.6"
env: LIBRARY=ffmpeg-4.0
os: linux
- python: "3.6"
env: LIBRARY=ffmpeg-3.4
os: linux
- python: "3.6"
env: LIBRARY=ffmpeg-3.3
os: linux
- python: "3.6"
env: LIBRARY=ffmpeg-3.2
os: linux
# Python 2.7.
- python: "2.7"
env: LIBRARY=ffmpeg-4.1
os: linux
- python: "2.7"
env: LIBRARY=ffmpeg-4.0
os: linux
- python: "2.7"
env: LIBRARY=ffmpeg-3.4
os: linux
- python: "2.7"
env: LIBRARY=ffmpeg-3.3
os: linux
- python: "2.7"
env: LIBRARY=ffmpeg-3.2
os: linux
# Mac OS X (python3.6)
- language: generic
env: LIBRARY=ffmpeg-4.1
os: osx
- language: generic
env: LIBRARY=ffmpeg-4.0
os: osx
- language: generic
env: LIBRARY=ffmpeg-3.4
os: osx
- language: generic
env: LIBRARY=ffmpeg-3.3
os: osx
- language: generic
env: LIBRARY=ffmpeg-3.2
os: osx
# PyPy
- python: "pypy"
dist: xenial
env: LIBRARY=ffmpeg-4.0
os: linux
- python: "pypy3"
dist: xenial
env: LIBRARY=ffmpeg-4.0
os: linux
# Newer Python 3.
- python: "3.7"
# Must force Ubuntu 16.04 LTS.
# By default Travis is running 14.04.
dist: xenial
sudo: true
env: LIBRARY=ffmpeg-4.0
os: linux
# Older Python 3.
- python: "3.5"
env: LIBRARY=ffmpeg-4.0
os: linux
- python: "3.4"
env: LIBRARY=ffmpeg-4.0
os: linux
allow_failures:
- python: "pypy3"
dist: xenial
env: LIBRARY=ffmpeg-4.0
os: linux
before_install:
- scripts/build-deps
install:
- scripts/build
script:
- scripts/test