mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 14:22:37 +01:00
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.
13 lines
356 B
YAML
13 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/')
|