From 7c4b169faa134b6716f574cff87d2e4340fba57b Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Fri, 19 Aug 2016 17:43:37 -0500 Subject: [PATCH] build: install btcd binary within Travis container MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit modifies the existing Travis configuration to also install the btcd binary within the container’s PATH. This change is necessary in order for tests written against the new rpctest package to work properly within the Travis testing environment. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index b68eda1f..c48c99ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ sudo: false install: - go get -v github.com/Masterminds/glide - glide install + - go install . ./cmd/... - go get -v golang.org/x/tools/cmd/cover - go get -v github.com/golang/lint/golint script: