open-vault/.travis.yml
Joel Thompson fb6cd052c5 Explicitly check go version in build (#3309)
* Explicitly check go version in build

Several GH issues have been opened by people trying to use an older
version of Go to build Vault (e.g., #3307 is the most recent). This adds
an explicit check to the build to hopefully make it more clear to users
in the future.

* Also add checking for go patch version

* Up minimum go version

And fix a comment

* Bump travis to go1.9.1
2017-10-19 16:30:19 -04:00

25 lines
263 B
YAML

sudo: required
dist: trusty
language: go
services:
- docker
go:
- 1.9.1
matrix:
allow_failures:
- go: tip
branches:
only:
- master
- travis-testing
script:
- make bootstrap
- travis_wait 75 make test
- travis_wait 75 make testrace