borg/.travis.yml

70 lines
1.5 KiB
YAML
Raw Normal View History

2015-08-07 16:17:07 +03:00
sudo: required
2013-07-04 00:46:46 +04:00
language: python
2015-08-07 16:17:07 +03:00
cache:
directories:
- $HOME/.cache/pip
matrix:
include:
- python: 3.5
2016-05-21 20:24:18 +03:00
os: linux
dist: trusty
env: TOXENV=py35
- python: 3.6
2016-01-31 00:03:09 +03:00
os: linux
dist: trusty
env: TOXENV=py36
- python: 3.7
os: linux
dist: xenial
env: TOXENV=py37
- python: "3.6-dev"
os: linux
dist: trusty
env: TOXENV=py36
- python: "3.7-dev"
2018-07-30 03:06:15 +03:00
os: linux
dist: xenial
env: TOXENV=py37
- python: 3.5
os: linux
dist: xenial
env: TOXENV=flake8
- language: generic
os: osx
osx_image: xcode8.3
env: TOXENV=py35
2017-01-04 02:57:35 +03:00
- language: generic
os: osx
osx_image: xcode8.3
2017-01-04 02:57:35 +03:00
env: TOXENV=py36
2015-08-07 16:17:07 +03:00
before_install:
- |
test $TRAVIS_EVENT_TYPE != "pull_request" || {
echo Checking whether $TRAVIS_COMMIT_RANGE changed only docs
git diff --name-only $TRAVIS_COMMIT_RANGE | grep --quiet --invert-match --extended-regexp '(AUTHORS|README\.rst|^(docs)/)' || {
echo "Only docs were updated, stopping build process."
exit
}
}
2013-07-04 00:46:46 +04:00
install:
- git fetch --unshallow --tags
2015-08-07 16:17:07 +03:00
- ./.travis/install.sh
script:
- ./.travis/run.sh
after_success:
- ./.travis/upload_coverage.sh
notifications:
irc:
channels:
- "irc.freenode.org#borgbackup"
use_notice: true
skip_join: true