forked from PyAV-Org/PyAV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
131 lines (106 loc) · 2.65 KB
/
.travis.yml
File metadata and controls
131 lines (106 loc) · 2.65 KB
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
language: python
sudo: false
addons:
apt:
packages:
- libjpeg-dev
- libfreetype6-dev
- zlib1g-dev
- yasm
- ffmpeg # We will install our own, but we need the dependencies
cache:
directories:
- tests/assets # Cache files from the FATE suite.
- venvs # Python virtualenvs and compiled FFmpeg/Libav.
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
allow_failures:
# We are still working on this.
- os: osx
# Deprecation while we consider removing support for old FFmpeg.
- python: "2.7"
env: FFMPEG=2.2.4
os: linux
# Deprecation while we consider removing support for Libav entirely.
- python: "2.7"
env: LIBAV=12
os: linux
- python: "2.7"
env: LIBAV=11.9
os: linux
- python: "2.7"
env: LIBAV=11.6
os: linux
- python: "2.7"
env: LIBAV=11.4
os: linux
# Still setting up for PyPy.
- python: "pypy"
env: FFMPEG=3.2
os: linux
- python: "pypy3"
env: FFMPEG=3.2
os: linux
include:
# Primary target.
- python: "2.7"
env: FFMPEG=3.2
os: linux
# Mac OS X.
- python: "2.7"
env: FFMPEG=3.2
os: osx
# Python 3.
- python: "3.4"
env: FFMPEG=3.2
os: linux
# PyPy
- python: "pypy"
env: FFMPEG=3.2
os: linux
- python: "pypy3"
env: FFMPEG=3.2
os: linux
# Libav.
- python: "2.7"
env: LIBAV=12
os: linux
# Older Pythons.
- python: "2.6"
env: FFMPEG=3.2
os: linux
- python: "3.3"
env: FFMPEG=3.2
os: linux
# Older libraries.
- python: "2.7"
env: FFMPEG=3.0
os: linux
- python: "2.7"
env: FFMPEG=2.7
os: linux
- python: "2.7"
env: FFMPEG=2.5
os: linux
# Deprecated libraries.
- python: "2.7"
env: FFMPEG=2.2.4
os: linux
- python: "2.7"
env: LIBAV=11.9
os: linux
- python: "2.7"
env: LIBAV=11.6
os: linux
- python: "2.7"
env: LIBAV=11.4
os: linux
before_install:
- scripts/travis-setup
- scripts/build-deps
install:
- scripts/build
script:
- scripts/test