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:
parent
c065733c31
commit
07f8c84fb1
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue