restic/.travis.yml

53 lines
701 B
YAML
Raw Normal View History

2015-03-14 14:38:59 +00:00
language: go
2015-07-02 14:24:57 +00:00
sudo: false
go:
2018-02-17 17:37:37 +00:00
- "1.8.x"
- "1.9.x"
- "1.10.x"
2015-03-14 14:37:12 +00:00
2015-04-25 17:31:38 +00:00
os:
- linux
- osx
2016-09-15 19:25:59 +00:00
env:
matrix:
RESTIC_TEST_FUSE=0
matrix:
exclude:
2017-09-02 07:28:38 +00:00
- os: osx
2018-02-17 17:37:37 +00:00
go: "1.9.x"
2017-09-02 07:28:38 +00:00
- os: linux
2018-02-17 17:37:37 +00:00
go: "1.10.x"
2016-09-15 19:25:59 +00:00
include:
- os: linux
2018-02-17 17:37:37 +00:00
go: "1.10.x"
2016-09-15 19:25:59 +00:00
sudo: true
env:
RESTIC_TEST_FUSE=1
2016-12-30 14:18:49 +00:00
branches:
only:
- master
2015-03-14 14:37:12 +00:00
notifications:
irc:
channels:
- "chat.freenode.net#restic"
on_success: change
on_failure: change
skip_join: true
install:
2015-06-13 11:21:00 +00: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 08:44:37 +00:00
- bash <(curl -s https://codecov.io/bash) -f all.cov