lnd.xprv/.travis.yml
Andrey Samokhvalov 2acb2bb373 travis: use glide install of btcd
In order to have more stable builds we should use use glide install
directly, instead of "go get".
2017-06-26 20:26:27 +03:00

22 lines
568 B
YAML

language: go
go:
- 1.7.6
- 1.8.3
sudo: false
install:
- GLIDE_TAG=v0.12.3
- GLIDE_DOWNLOAD="https://github.com/Masterminds/glide/releases/download/$GLIDE_TAG/glide-$GLIDE_TAG-linux-amd64.tar.gz"
- curl -L $GLIDE_DOWNLOAD | tar -xvz
- export PATH=$PATH:$PWD/linux-amd64/
- mkdir -p $GOPATH/src/github.com/roasbeef/
- pushd $GOPATH/src/github.com/roasbeef/
- git clone https://github.com/roasbeef/btcd
- pushd btcd
- glide install
- go install . ./cmd/...
- popd
- popd
script:
- export PATH=$PATH:$HOME/gopath/bin
- ./gotest.sh -l -r -c