mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-27 18:44:19 +08:00
76 lines
1.9 KiB
YAML
76 lines
1.9 KiB
YAML
# vim ft=yaml
|
|
|
|
# After changing this file, check it on:
|
|
# http://yaml-online-parser.appspot.com/
|
|
|
|
# See doc/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: "h25sS+tTrt1Ab8LzCFmw4nGDY7uKh4vkQ57m7KwVTua0jnI2D/mUrSiwuERF07F0w5xEoICLDUP/9P74g0JuUwSJcnyIK61lNfGXW0WLj/fMWp0iB2cOnFTTJYpUKlEmHooGVY4qqYVVAG3gaiB8s0ElPsSn5v+zoVmzq1BGark="
|
|
|
|
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
|
|
env: PIP_FLAGS="--pre"
|
|
- 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}
|
|
- source tools/travis_before_install.sh
|
|
- which python; python --version
|
|
- python check_bento_build.py
|
|
- tools/build_versions.py
|
|
|
|
install:
|
|
- section build
|
|
- python setup.py develop
|
|
- section_end build
|
|
|
|
script: tools/travis_script.sh
|
|
|
|
after_success:
|
|
- codecov
|
|
- bash tools/deploy_docs.sh
|