mirror of
https://github.com/octoleo/restic.git
synced 2024-10-31 19:02:32 +00:00
62 lines
1.2 KiB
YAML
62 lines
1.2 KiB
YAML
language: go
|
|
sudo: false
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
go: "1.10.x"
|
|
env: RESTIC_TEST_FUSE=0 RESTIC_TEST_CLOUD_BACKENDS=0
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/go-build
|
|
- $HOME/gopath/pkg/mod
|
|
|
|
- os: linux
|
|
go: "1.11.x"
|
|
env: RESTIC_TEST_FUSE=0 RESTIC_TEST_CLOUD_BACKENDS=0
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/go-build
|
|
- $HOME/gopath/pkg/mod
|
|
|
|
# only run fuse and cloud backends tests on Travis for the latest Go on Linux
|
|
- os: linux
|
|
go: "1.12.x"
|
|
sudo: true
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/go-build
|
|
- $HOME/gopath/pkg/mod
|
|
|
|
- os: osx
|
|
go: "1.12.x"
|
|
env: RESTIC_TEST_FUSE=0 RESTIC_TEST_CLOUD_BACKENDS=0
|
|
cache:
|
|
directories:
|
|
- $HOME/Library/Caches/go-build
|
|
- $HOME/gopath/pkg/mod
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
- "chat.freenode.net#restic"
|
|
on_success: change
|
|
on_failure: change
|
|
skip_join: true
|
|
|
|
install:
|
|
- go version
|
|
- export GOBIN="$GOPATH/bin"
|
|
- export PATH="$PATH:$GOBIN"
|
|
- go env
|
|
|
|
script:
|
|
- go run run_integration_tests.go
|
|
|
|
after_success:
|
|
- test -r all.cov && bash <(curl -s https://codecov.io/bash) -f all.cov
|