Igor Mandrigin fb3d2ff6fe
Introduce the dependency vendoring tool: dep. (#551)
* Introduce `dep`, the dependency vendoring tool.

Use commits from `go-ethereum@release/1.7` for most of the dependencies.

* Update dependencies.
2018-01-25 14:08:43 +01:00

29 lines
359 B
YAML

language: go
go:
- 1.7.5
os:
- linux
- osx
matrix:
include:
- os: osx
go: 1.7.5
env:
- GOFLAGS="-tags kqueue"
env:
global:
- GOBIN=$HOME/bin
- PATH=$HOME/bin:$PATH
install:
- go get -t -v ./...
script:
- "(go version | grep -q 1.4) || go tool vet -all ."
- go install $GOFLAGS ./...
- go test -v -race $GOFLAGS ./...