mirror of
https://github.com/soheilhy/cmux.git
synced 2024-11-09 19:21:52 +08:00
6a5d332559
gRPC doesn't support Go 1.5 anymore, and the build would fail if we keep testing with Go 1.5.
30 lines
720 B
YAML
30 lines
720 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.6
|
|
- 1.7
|
|
- 1.8
|
|
- tip
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|
|
|
|
gobuild_args: -race
|
|
|
|
before_install:
|
|
- if [[ $TRAVIS_GO_VERSION == 1.6* ]]; then go get -u github.com/kisielk/errcheck; fi
|
|
- if [[ $TRAVIS_GO_VERSION == 1.6* ]]; then go get -u github.com/golang/lint/golint; fi
|
|
|
|
before_script:
|
|
- '! gofmt -s -l . | read'
|
|
- echo $TRAVIS_GO_VERSION
|
|
- if [[ $TRAVIS_GO_VERSION == 1.6* ]]; then golint ./...; fi
|
|
- if [[ $TRAVIS_GO_VERSION == 1.6* ]]; then errcheck ./...; fi
|
|
- if [[ $TRAVIS_GO_VERSION == 1.6* ]]; then go tool vet .; fi
|
|
- if [[ $TRAVIS_GO_VERSION == 1.6* ]]; then go tool vet --shadow .; fi
|
|
|
|
script:
|
|
- go test -bench . -v ./...
|
|
- go test -race -bench . -v ./...
|