forked from scikit-image/scikit-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
84 lines (75 loc) · 2.12 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
# vim ft=yaml
# After changing this file, check it on:
# http://yaml-online-parser.appspot.com/
# See tools/travis_notes.txt for some guidelines
language: python
sudo: false
cache:
# See http://docs.travis-ci.com/user/caching/#pip-cache
directories:
- $HOME/.cache/pip
- $HOME/.cache/sphinx
- $HOME/.ccache
addons:
apt:
packages:
- ccache
- libfreeimage3
- texlive
- texlive-latex-extra
- dvipng
- python-qt4
env:
global:
- GH_REF: github.com/scikit-image/docs.git
- secure: "Z8uxAGrFb6yNw/savI7YvA5/BfkVKVGD3HUkDSXamotJAvUKMjIlWnzLc7d9S7PY99FRENgRYaNw4fzZqwJ91hDITcl1/wk6ux1j778O8kUQZayzdqcJG8KpfBsy1vJ4fl4uDGlSmUP413rR3R3dvvgJzIpCLy2qiQR/xujrGvs="
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/1fea29525e8b929dd7c7
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
matrix:
include:
- os: linux
python: 2.7
env: PIP_FLAGS="--pre"
- os: linux
python: 2.7
env: WITH_PYAMG=1 MINIMUM_REQUIREMENTS=1 WITH_QT=1
- os: linux
python: 3.4
env: OPTIONAL_DEPS=1 WITH_PYSIDE=1
- os: linux
python: 3.5
- os: linux
python: 3.5
env: PIP_FLAGS="--pre"
# This entry waiting for resolution of issue 2450
# - os: linux
# python: 3.6
- os: osx
osx_image: xcode7.3
language: objective-c
env: TRAVIS_PYTHON_VERSION=3.5
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then source tools/travis_osx_install.sh ; fi
- ccache -s
- export PATH=/usr/lib/ccache:${PATH}
# Attempt to fix bug making virtualenvs for Python 3.6
- python -m pip install -U pip
- pip install -U virtualenv
- source tools/travis_before_install.sh
- which python; python --version
- tools/check_bento_build.py
- tools/build_versions.py
- tools/check_sdist.py
install:
- section build
- python setup.py develop
- section_end build
script: tools/travis_script.sh
after_success:
- codecov
- bash tools/deploy_docs.sh