From a75b56ce779dc93a37741b239c4321b8839827d2 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Mon, 25 Jul 2016 16:39:22 -0700 Subject: [PATCH] build: update travis CI config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit updates the previous travis CI config to pin against the two latest golang versions, and perform installation via Glide. Additionally, this should allow lnwallet’s integration tests to build properly as the btcd binary will be available in the build process’ PATH. --- .travis.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 552c5f4a..6cd23db0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,12 @@ language: go - go: - - tip + - 1.5.4 + - 1.6.3 +sudo: false +install: + - go get -v github.com/roasbeef/btcd # Required for the rpc test package. + - go get -v github.com/Masterminds/glide + - glide install +script: + - export PATH=$PATH:$HOME/gopath/bin + - export GO15VENDOREXPERIMENT=1