travis.yml: build btcd version from glide.yaml for use in integration tests

This commit is contained in:
Johan T. Halseth 2017-11-20 13:56:00 -08:00
parent 6065c763e6
commit 3a0d4e78ae
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

@ -8,10 +8,12 @@ install:
- GLIDE_DOWNLOAD="https://github.com/Masterminds/glide/releases/download/$GLIDE_TAG/glide-$GLIDE_TAG-linux-amd64.tar.gz" - GLIDE_DOWNLOAD="https://github.com/Masterminds/glide/releases/download/$GLIDE_TAG/glide-$GLIDE_TAG-linux-amd64.tar.gz"
- curl -L $GLIDE_DOWNLOAD | tar -xvz - curl -L $GLIDE_DOWNLOAD | tar -xvz
- export PATH=$PATH:$PWD/linux-amd64/ - export PATH=$PATH:$PWD/linux-amd64/
- BTCD_VERSION=$(cat glide.yaml | grep -A1 btcd | tail -n1 | awk '{ print $2}')
- mkdir -p $GOPATH/src/github.com/roasbeef/ - mkdir -p $GOPATH/src/github.com/roasbeef/
- pushd $GOPATH/src/github.com/roasbeef/ - pushd $GOPATH/src/github.com/roasbeef/
- git clone https://github.com/roasbeef/btcd - git clone https://github.com/roasbeef/btcd
- pushd btcd - pushd btcd
- git checkout $BTCD_VERSION
- glide install - glide install
- go install . ./cmd/... - go install . ./cmd/...
- popd - popd