Skip to content

Commit

Permalink
WIP: working on travis issues with glide (all builds passing except 1.5)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamccall committed Jun 3, 2017
1 parent e12c1e1 commit 2a19028
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,15 @@ go:
- 1.7.x
- 1.8.x
- tip
env:
- GO15VENDOREXPERIMENT=1

before_script:
- go get ./...
# This package is used in tests only, so "go get" misses it
#install glide
- wget "https://github.com/Masterminds/glide/releases/download/0.10.2/glide-0.10.2-linux-amd64.tar.gz"
- mkdir -p $HOME/bin
- tar -vxz -C $HOME/bin --strip=1 -f glide-0.10.2-linux-amd64.tar.gz
- export PATH="$HOME/bin:$PATH"

# This package is not vendored in to allow clients to choose their own version
- go get github.com/stretchr/testify/assert
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SHELL=bash

all: clean fmt test fixture install integration
all: clean fmt test install fixture integration

novendor=$(shell glide novendor)

Expand Down

0 comments on commit 2a19028

Please sign in to comment.