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.
34 lines
1.3 KiB
34 lines
1.3 KiB
8 years ago
|
sudo: false
|
||
|
|
||
|
language: go
|
||
|
|
||
|
go: 1.7
|
||
|
|
||
|
install:
|
||
|
- go get -u github.com/golang/lint/golint
|
||
|
- go get -u github.com/Masterminds/glide
|
||
|
- go get -u golang.org/x/net/context
|
||
|
- go get -u github.com/HewlettPackard/gas
|
||
|
- go get -u gopkg.in/godo.v2/cmd/godo
|
||
|
- export GO15VENDOREXPERIMENT=1
|
||
|
- glide install
|
||
|
|
||
|
script:
|
||
|
- gas -skip=management/examples/*.go -skip=*vendor* -skip=Gododir/* ./... | tee gas-scan.txt
|
||
|
- test -z "$(grep 'Severity:\s*HIGH' gas-scan.txt)"
|
||
|
- test -z "$(gofmt -s -l $(find ./arm/* -type d -print) | tee /dev/stderr)"
|
||
|
- test -z "$(gofmt -s -l -w management | tee /dev/stderr)"
|
||
|
- test -z "$(gofmt -s -l -w storage | tee /dev/stderr)"
|
||
|
- test -z "$(gofmt -s -l -w Gododir | tee /dev/stderr)"
|
||
|
- test -z "$(go build $(find ./* -type d -print | grep -v '^./vendor$') | tee /dev/stderr)"
|
||
|
- test -z "$(go vet $(find ./arm/* -type d -print) | tee /dev/stderr)"
|
||
|
- test -z "$(golint ./arm/... | tee /dev/stderr)"
|
||
|
- go test -v ./storage/... -check.v
|
||
|
- test -z "$(golint ./storage/... | tee /dev/stderr)"
|
||
|
- go vet ./storage/...
|
||
|
- go test -v ./management/...
|
||
|
- test -z "$(golint ./management/... | grep -v 'should have comment' | grep -v 'stutters' | tee /dev/stderr)"
|
||
|
- go vet ./management/...
|
||
|
- test -z "$(golint ./Gododir/... | tee /dev/stderr)"
|
||
|
- go vet ./Gododir/...
|