restic/.travis.yml

55 lines
727 B
YAML
Raw Normal View History

2015-03-14 15:38:59 +01:00
language: go
2015-07-02 16:24:57 +02:00
sudo: false
go:
2018-02-17 18:37:37 +01:00
- "1.8.x"
- "1.9.x"
2018-02-17 18:48:15 +01:00
- "1.10"
2015-03-14 15:37:12 +01:00
2015-04-25 19:31:38 +02:00
os:
- linux
- osx
2016-09-15 21:25:59 +02:00
env:
matrix:
RESTIC_TEST_FUSE=0
matrix:
exclude:
2018-02-17 18:39:16 +01:00
- os: osx
go: "1.8.x"
2017-09-02 09:28:38 +02:00
- os: osx
2018-02-17 18:37:37 +01:00
go: "1.9.x"
2017-09-02 09:28:38 +02:00
- os: linux
2018-02-17 18:48:15 +01:00
go: "1.10"
2016-09-15 21:25:59 +02:00
include:
- os: linux
2018-02-17 18:48:15 +01:00
go: "1.10"
2016-09-15 21:25:59 +02:00
sudo: true
env:
RESTIC_TEST_FUSE=1
2016-12-30 15:18:49 +01:00
branches:
only:
- master
2015-03-14 15:37:12 +01:00
notifications:
irc:
channels:
- "chat.freenode.net#restic"
on_success: change
on_failure: change
skip_join: true
install:
2015-06-13 13:21:00 +02:00
- go version
- export GOBIN="$GOPATH/bin"
- export PATH="$PATH:$GOBIN"
- go env
script:
- go run run_integration_tests.go
after_success:
2016-09-03 10:44:37 +02:00
- bash <(curl -s https://codecov.io/bash) -f all.cov