restic/.travis.yml

34 lines
550 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:
2015-03-14 15:07:29 +01:00
- 1.3.3
2015-09-27 17:22:12 +02:00
- 1.4.3
2016-01-16 13:00:28 +01:00
- 1.5.3
2016-01-28 22:28:17 +01:00
- 1.6rc1
2015-03-14 15:37:12 +01:00
2015-04-25 19:31:38 +02:00
os:
- linux
- osx
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"
- export GOPATH="$GOPATH:${TRAVIS_BUILD_DIR}/Godeps/_workspace"
2015-06-13 13:21:00 +02:00
- go env
script:
- go run run_integration_tests.go
after_success:
2015-06-11 22:45:22 +02:00
- goveralls -coverprofile=all.cov -service=travis-ci -repotoken "$COVERALLS_TOKEN" || true