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 1d59ff9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
16 changes: 14 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,19 @@ go:
- 1.8.x
- tip

matrix:
include:
- go: "1.5.x"
env: GO15VENDOREXPERIMENT=1
- go: "1.6.x"
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 1d59ff9

Please sign in to comment.