From 64922553b5c21f333438edaed6e0ba2b5a7760ee Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 7 Apr 2016 13:26:15 -0500 Subject: [PATCH] TravisCI: Update to latest configurations. (#76) 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. --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index e23b40307..8c24901c9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,13 @@ language: go go: - - 1.3.3 - - 1.4.1 + - 1.5.3 + - 1.6 sudo: false before_install: - gotools=golang.org/x/tools - - if [ "$TRAVIS_GO_VERSION" = "release" ]; then gotools=code.google.com/p/go.tools; fi install: - go get -d -t -v ./... - go get -v $gotools/cmd/cover - - go get -v $gotools/cmd/vet - go get -v github.com/bradfitz/goimports - go get -v github.com/golang/lint/golint script: