mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
364 B
29 lines
364 B
language: go
|
|
|
|
go:
|
|
- 1.4.3
|
|
- 1.6
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
matrix:
|
|
include:
|
|
- os: osx
|
|
go: 1.6
|
|
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 ./...
|
|
|