build: Remove old versions of Go on Travis CI

There is no real value in continuing to build against versions of Go
which are not the latest (1.10.2 right now). This can easily be
expressed in the `.travis.yml` file as `1.x`, to mean the latest version
in the Go 1 series, which is (presumably) what is being used for
releases.

Keeping older versions around is causing spurious CI failures, and
increases the cycle time to feedback for pull requests: see
hashicorp/packer#6265 for an example of this.
This commit is contained in:
James Nugent 2018-05-22 11:16:25 +04:00
parent a8b6a04dda
commit d142055ab1
1 changed files with 0 additions and 3 deletions

View File

@ -6,11 +6,8 @@ sudo: false
language: go
go:
- 1.8.x
- 1.9.x
- 1.x
install:
- make deps