2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-16 07:42:22 +00:00
restic/.travis.yml

42 lines
583 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:
2015-03-14 14:07:29 +00:00
- 1.3.3
2015-09-27 15:22:12 +00:00
- 1.4.3
2016-01-16 12:00:28 +00:00
- 1.5.3
2016-02-20 16:56:11 +00:00
- 1.6
2015-03-14 14:37:12 +00:00
2015-04-25 17:31:38 +00:00
os:
- linux
- osx
matrix:
exclude:
- os: osx
go: 1.3.3
- os: osx
go: 1.4.3
- os: osx
2016-02-20 16:56:11 +00:00
go: 1.5.3
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:
- goveralls -coverprofile=all.cov -service=travis-ci -repotoken "$COVERALLS_TOKEN"