1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-11 22:53:27 +00:00
borg/.travis.yml

71 lines
1.9 KiB
YAML
Raw Normal View History

2013-07-03 22:46:46 +02:00
language: python
2015-08-07 15:17:07 +02:00
cache:
directories:
- $HOME/.cache/pip
matrix:
fast_finish: true
2015-08-07 15:17:07 +02:00
include:
- python: "3.5"
2016-05-21 19:24:18 +02:00
os: linux
dist: trusty
env: TOXENV=py35
- python: "3.6"
2016-01-30 22:03:09 +01:00
os: linux
dist: trusty
env: TOXENV=py36
- python: "3.7"
os: linux
dist: xenial
env: TOXENV=py37
- python: "3.8"
os: linux
dist: xenial
env: TOXENV=py38
- python: "3.7-dev"
2018-07-30 01:06:15 +01:00
os: linux
dist: xenial
env: TOXENV=py37
2019-07-29 17:31:47 +02:00
- python: "3.8-dev"
os: linux
dist: xenial
env: TOXENV=py38
- python: "3.5"
os: linux
dist: xenial
env: TOXENV=flake8
- language: generic
os: osx
osx_image: xcode8.3 # This is the latest working xcode image with osxfuse compatibility; later images come with an OS X version which doesn't allow kernel extensions
env: TOXENV=py35
2017-01-04 00:57:35 +01:00
- language: generic
os: osx
osx_image: xcode11.3
env: TOXENV=py37 SKIPFUSE=true
allow_failures:
- os: osx # OS X builds often take too long and time out, even though tests don't actually fail
2015-08-07 15:17:07 +02:00
before_install: # Abort installation and don't run tests for pull requests if commit only changed the docs
- |
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
}
}
install: ./.travis/install.sh
2015-08-07 15:17:07 +02:00
script: ./.travis/run.sh
2015-08-07 15:17:07 +02:00
after_success: ./.travis/upload_coverage.sh
2015-08-07 15:17:07 +02:00
notifications:
irc:
channels:
- "irc.freenode.org#borgbackup"
use_notice: true
skip_join: true