Skip to content
This repository has been archived by the owner on Jul 16, 2020. It is now read-only.

Commit

Permalink
Merge pull request #923 from markdryan/fix-911
Browse files Browse the repository at this point in the history
Travis: Add go 1.8 support, fix go lint on tip and delete unused misspell invocation
  • Loading branch information
Tim Pepper authored Dec 2, 2016
2 parents 96ab9bb + 7ff017a commit d940dcc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ services:

go:
- 1.7
- go1.8beta1
- tip

env:
Expand Down Expand Up @@ -50,10 +51,8 @@ script:
- sudo ip addr add 198.51.100.1/24 dev testdummy
- go get github.com/google/gofuzz github.com/stretchr/testify
- go get github.com/golang/lint/golint github.com/client9/misspell/cmd/misspell
- go list ./... | grep -v github.com/01org/ciao/vendor | xargs -t misspell
- go list ./... | grep -v github.com/01org/ciao/vendor | xargs -t go vet
# - go list ./... | grep -v github.com/01org/ciao/vendor | xargs -tL 1 golint -set_exit_status
- if [[ "$TRAVIS_GO_VERSION" != "tip" ]] ; then go list ./... | grep -v github.com/01org/ciao/vendor | xargs -tL 1 golint -set_exit_status ; fi
- go list ./... | grep -v github.com/01org/ciao/vendor | xargs -tL 1 golint -set_exit_status
- go list ./... | grep -v github.com/01org/ciao/vendor | xargs go list -f '{{.Dir}}/*.go' | xargs -I % bash -c "misspell -error %"
- go list ./... | grep -v github.com/01org/ciao/vendor | xargs go list -f '{{.Dir}}' | xargs gocyclo -over 15
- go list ./... | grep -v github.com/01org/ciao/vendor | xargs go list -f '{{.Dir}}' | xargs -L 1 ineffassign
Expand Down

0 comments on commit d940dcc

Please sign in to comment.