64922553b5
This updates the Go versions using when running the TravisCI integration tests to reflect the latest supported Go versions. Also, the vet tool moved into the Go source tree as of Go 1.5. Its previous location in the x/tools repo was deprecated at that time and has now been removed. Finally, old tool path is no longer needed, so it has been removed.
15 lines
314 B
YAML
15 lines
314 B
YAML
language: go
|
|
go:
|
|
- 1.5.3
|
|
- 1.6
|
|
sudo: false
|
|
before_install:
|
|
- gotools=golang.org/x/tools
|
|
install:
|
|
- go get -d -t -v ./...
|
|
- go get -v $gotools/cmd/cover
|
|
- go get -v github.com/bradfitz/goimports
|
|
- go get -v github.com/golang/lint/golint
|
|
script:
|
|
- export PATH=$PATH:$HOME/gopath/bin
|
|
- ./goclean.sh
|