lnd.xprv/.travis.yml
Olaoluwa Osuntokun 4d7ca825d4
build: update travis to build against Go 1.8 and 1.7.5
Sticking with our tradition of tracking the two latest go releases,
we'll now build against Go 1.8 (which was recently released and Go
1.7.5).

The release of Go 1.8 is very attractive to the project as it includes
performance and GC improvements as well as the addition of more
profiling and race condition detection capabilities within the runtime.
2017-02-17 13:37:09 +08:00

14 lines
356 B
YAML

language: go
go:
- 1.7.5
- 1.8
sudo: false
install:
- go get -v github.com/roasbeef/btcd # Required for the rpc test package.
- go get -v github.com/Masterminds/glide
- glide install
- go install -v . # Required for the integration tests.
script:
- export PATH=$PATH:$HOME/gopath/bin
- go test -p 1 -v $(go list ./... | grep -v '/vendor/')