build: install btcd binary within Travis container

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.
This commit is contained in:
Olaoluwa Osuntokun 2016-08-19 17:43:37 -05:00
parent c3d5371615
commit 7c4b169faa
No known key found for this signature in database
GPG key ID: 9CC5B105D03521A2

View file

@ -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: