From 877947d6afddce2115e3f20fac6652149a91bcbd Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Fri, 6 May 2016 09:55:41 -0400 Subject: [PATCH] Enable vendor experiment for Go 1.5 on Travis-CI. Previously, the GO15VENDOREXPERIMENT environment variable was unset, leaving travis to only use the vendored packages during builds for Go 1.6 which enabled the experiment by default. Export the variable so it also correctly tests under Go 1.5. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 92d8377..d5b3468 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,4 +14,5 @@ install: - go get -v github.com/davecgh/go-spew/spew script: - export PATH=$PATH:$HOME/gopath/bin + - export GO15VENDOREXPERIMENT=1 - ./goclean.sh