1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-25 17:27:31 +00:00
borg/.travis.yml
Thomas Waldmann 49b1421682 FUSE: support pyfuse3 additionally to llfuse, fixes #5407
FUSE implementation can be switched via env var BORG_FUSE_IMPL.
2020-10-31 22:04:44 +01:00

70 lines
2.1 KiB
YAML

language: python
cache:
directories:
- $HOME/.cache/pip
matrix:
fast_finish: true
include:
- python: "3.6"
os: linux
dist: bionic
env: TOXENV=py36-fuse2
- python: "3.7"
os: linux
dist: bionic
env: TOXENV=py37-fuse2
- python: "3.8"
os: linux
dist: focal
env: TOXENV=py38-fuse2
- python: "3.8-dev"
os: linux
dist: focal
env: TOXENV=py38-fuse3
- python: "3.9-dev"
os: linux
dist: focal
env: TOXENV=py39-fuse2
- python: "3.9-dev"
os: linux
dist: focal
env: TOXENV=py39-fuse3
- python: "3.8"
os: linux
dist: focal
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=py36-fuse2
- language: generic
os: osx
osx_image: xcode11.3
env: TOXENV=py37 # No FUSE testing, because recent versions of macOS don't allow kernel extensions of osxfuse.
allow_failures:
- os: osx # OS X builds often take too long and time out, even though tests don't actually fail
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
script: ./.travis/run.sh
after_success: ./.travis/upload_coverage.sh
notifications:
irc:
channels:
- "irc.freenode.org#borgbackup"
use_notice: true
skip_join: true