7c4b169faa
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.
14 lines
295 B
YAML
14 lines
295 B
YAML
language: go
|
|
go:
|
|
- 1.6.3
|
|
- 1.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:
|
|
- export PATH=$PATH:$HOME/gopath/bin
|
|
- ./goclean.sh
|