2015-01-22 21:56:32 +01:00
|
|
|
sudo: false
|
2014-08-05 19:16:53 +02:00
|
|
|
language: go
|
|
|
|
go:
|
2016-08-17 02:57:21 +02:00
|
|
|
- 1.7
|
2016-01-29 20:53:56 +01:00
|
|
|
install:
|
2016-03-21 13:56:18 +01:00
|
|
|
# This script is used by the Travis build to install a cookie for
|
|
|
|
# go.googlesource.com so rate limits are higher when using `go get` to fetch
|
|
|
|
# packages that live there.
|
|
|
|
# See: https://github.com/golang/go/issues/12933
|
|
|
|
- bash scripts/gogetcookie.sh
|
2014-08-05 19:16:53 +02:00
|
|
|
script:
|
2016-03-21 13:56:18 +01:00
|
|
|
- make test vet
|
2015-01-22 21:57:01 +01:00
|
|
|
branches:
|
|
|
|
only:
|
2016-03-21 13:56:18 +01:00
|
|
|
- master
|
2015-01-22 22:02:03 +01:00
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels:
|
2016-03-21 13:56:18 +01:00
|
|
|
- irc.freenode.org#terraform-tool
|
2015-01-22 22:02:03 +01:00
|
|
|
skip_join: true
|
|
|
|
use_notice: true
|
2014-08-05 19:16:53 +02:00
|
|
|
matrix:
|
2015-01-22 21:56:32 +01:00
|
|
|
fast_finish: true
|
|
|
|
allow_failures:
|
2016-03-21 13:56:18 +01:00
|
|
|
- go: tip
|