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.
30 lines
364 B
30 lines
364 B
9 years ago
|
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:
|
||
8 years ago
|
- "(go version | grep -q 1.4) || go tool vet -all ."
|
||
9 years ago
|
- go install $GOFLAGS ./...
|
||
|
- go test -v -race $GOFLAGS ./...
|