forked from scikit-video/scikit-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
64 lines (58 loc) · 1.86 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
# make it explicit that we favor the new container-based travis workers
sudo: required
notifications:
email: true
matrix:
global:
COVERAGE="true"
include:
- os: osx
python: "3.5"
osx_image: xcode8.2
env: TRAVIS_PYTHON_VERSION=3.5 FFMPEG=2.8 LIBAV=none
- os: osx
python: "3.5"
osx_image: xcode8.2
env: TRAVIS_PYTHON_VERSION=3.5 FFMPEG=snapshot LIBAV=none
- os: osx
python: "2.7"
osx_image: xcode8.2
env: TRAVIS_PYTHON_VERSION=2.7 FFMPEG=2.8 LIBAV=none
- os: osx
osx_image: xcode8.2
python: "2.7"
env: TRAVIS_PYTHON_VERSION=2.7 FFMPEG=snapshot LIBAV=none
- os: linux
python: "3.5"
language: python
env: FFMPEG=2.8 LIBAV=11.4
- os: linux
python: "3.5"
language: python
env: FFMPEG=snapshot LIBAV=none
- os: linux
python: "2.7"
language: python
env: FFMPEG=2.8 LIBAV=11.4
- os: linux
python: "2.7"
language: python
env: FFMPEG=snapshot LIBAV=none
before_install:
- source scripts/before_install.sh
install:
- source scripts/install.sh
script:
- bash scripts/script.sh
after_success:
# Ignore coveralls failures as the coveralls server is not very reliable
# but we don't want travis to report a failure in the github UI just
# because the coverage report failed to be published.
- if [[ "$COVERAGE" == "true" ]]; then coveralls || echo "failed"; fi
notifications:
webhooks:
#urls:
#- https://webhooks.gitter.im/e/4ffabb4df010b70cd624
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always