TravisCI: Use release version of glide.

This modifies the .travis.yml file to install a release version of glide
instead of using its latest master branch.  This will prevent upstream
changes from inadvertently breaking the CI builds.
This commit is contained in:
Dave Collins 2017-01-23 12:40:52 -06:00
parent c065733c31
commit 07f8c84fb1
No known key found for this signature in database
GPG key ID: B8904D9D9C93D1F2

View file

@ -4,7 +4,10 @@ go:
- 1.7.x
sudo: false
install:
- go get -v github.com/Masterminds/glide
- GLIDE_TAG=v0.12.3
- GLIDE_DOWNLOAD="https://github.com/Masterminds/glide/releases/download/$GLIDE_TAG/glide-$GLIDE_TAG-linux-amd64.tar.gz"
- curl -L $GLIDE_DOWNLOAD | tar -xvz
- export PATH=$PATH:$PWD/linux-amd64/
- glide install
- go install . ./cmd/...
- go get -v github.com/alecthomas/gometalinter