mirror of
https://github.com/rancher/os.git
synced 2025-09-12 13:17:17 +00:00
18 lines
320 B
YAML
18 lines
320 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.5.3
|
|
- 1.6
|
|
|
|
before_install:
|
|
- go get github.com/axw/gocov/gocov
|
|
- go get github.com/mattn/goveralls
|
|
- go get golang.org/x/tools/cmd/cover
|
|
|
|
install:
|
|
- mkdir -p "$GOPATH/src/google.golang.org"
|
|
- mv "$TRAVIS_BUILD_DIR" "$GOPATH/src/google.golang.org/grpc"
|
|
|
|
script:
|
|
- make test testrace
|