mirror of https://github.com/grpc/grpc-go.git
Merge branch 'master' of https://github.com/grpc/grpc-go
This commit is contained in:
commit
a25e0a517e
10
.travis.yml
10
.travis.yml
|
|
@ -1,4 +1,14 @@
|
||||||
language: go
|
language: go
|
||||||
|
|
||||||
|
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:
|
script:
|
||||||
- make test testrace
|
- make test testrace
|
||||||
|
- make coverage
|
||||||
|
|
|
||||||
3
Makefile
3
Makefile
|
|
@ -45,3 +45,6 @@ testrace: testdeps
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
go clean google.golang.org/grpc/...
|
go clean google.golang.org/grpc/...
|
||||||
|
|
||||||
|
coverage: testdeps
|
||||||
|
goveralls -v google.golang.org/grpc/...
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#gRPC-Go
|
#gRPC-Go
|
||||||
|
|
||||||
[](https://travis-ci.org/grpc/grpc-go) [](https://godoc.org/google.golang.org/grpc) [](https://coveralls.io/github/grpc/grpc-go?branch=master)
|
[](https://travis-ci.org/grpc/grpc-go) [](https://godoc.org/google.golang.org/grpc)
|
||||||
|
|
||||||
The Go implementation of [gRPC](http://www.grpc.io/): A high performance, open source, general RPC framework that puts mobile and HTTP/2 first. For more information see the [gRPC Quick Start](http://www.grpc.io/docs/) guide.
|
The Go implementation of [gRPC](http://www.grpc.io/): A high performance, open source, general RPC framework that puts mobile and HTTP/2 first. For more information see the [gRPC Quick Start](http://www.grpc.io/docs/) guide.
|
||||||
|
|
||||||
|
|
@ -20,11 +20,11 @@ This requires Go 1.4 or above.
|
||||||
|
|
||||||
Constraints
|
Constraints
|
||||||
-----------
|
-----------
|
||||||
The grpc package should only depend on standard Go packages and a short list of exceptions. A new addition to the list requires a discussion with gRPC-Go authors and consultants.
|
The grpc package should only depend on standard Go packages and a small number of exceptions. If your contribution introduces new dependencies which are NOT in the [list](http://godoc.org/google.golang.org/grpc?imports), you need a discussion with gRPC-Go authors and consultants.
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
-------------
|
-------------
|
||||||
You can find more detailed documentation and examples in the [examples directory](examples/).
|
See [API documentation](https://godoc.org/google.golang.org/grpc) for package and API descriptions and find examples in the [examples directory](examples/).
|
||||||
|
|
||||||
Status
|
Status
|
||||||
------
|
------
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue