2015-05-24 17:05:35 +03:00
|
|
|
all: test testrace
|
|
|
|
|
|
|
|
deps:
|
2015-05-24 17:27:48 +03:00
|
|
|
go get -d -v google.golang.org/grpc/...
|
2015-05-24 17:05:35 +03:00
|
|
|
|
|
|
|
updatedeps:
|
2015-05-24 17:27:48 +03:00
|
|
|
go get -d -v -u -f google.golang.org/grpc/...
|
2015-05-24 17:05:35 +03:00
|
|
|
|
|
|
|
testdeps:
|
2015-05-24 17:27:48 +03:00
|
|
|
go get -d -v -t google.golang.org/grpc/...
|
2015-05-24 17:05:35 +03:00
|
|
|
|
2017-06-13 00:52:33 +03:00
|
|
|
benchdeps: testdeps
|
|
|
|
go get -d -v golang.org/x/perf/cmd/benchstat
|
|
|
|
|
2015-05-24 17:05:35 +03:00
|
|
|
updatetestdeps:
|
2015-05-24 17:27:48 +03:00
|
|
|
go get -d -v -t -u -f google.golang.org/grpc/...
|
2015-05-24 17:05:35 +03:00
|
|
|
|
|
|
|
build: deps
|
2015-05-24 17:27:48 +03:00
|
|
|
go build google.golang.org/grpc/...
|
2015-05-24 17:05:35 +03:00
|
|
|
|
2015-05-24 17:14:32 +03:00
|
|
|
proto:
|
|
|
|
@ if ! which protoc > /dev/null; then \
|
|
|
|
echo "error: protoc not installed" >&2; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
2016-03-29 01:05:04 +03:00
|
|
|
go get -u -v github.com/golang/protobuf/protoc-gen-go
|
2016-06-10 00:40:28 +03:00
|
|
|
# use $$dir as the root for all proto files in the same directory
|
2016-06-09 00:47:37 +03:00
|
|
|
for dir in $$(git ls-files '*.proto' | xargs -n1 dirname | uniq); do \
|
|
|
|
protoc -I $$dir --go_out=plugins=grpc:$$dir $$dir/*.proto; \
|
2015-05-24 17:14:32 +03:00
|
|
|
done
|
|
|
|
|
2015-06-13 04:17:36 +03:00
|
|
|
test: testdeps
|
2015-05-24 17:27:48 +03:00
|
|
|
go test -v -cpu 1,4 google.golang.org/grpc/...
|
2015-05-24 17:05:35 +03:00
|
|
|
|
2015-06-13 04:17:36 +03:00
|
|
|
testrace: testdeps
|
2015-05-24 17:27:48 +03:00
|
|
|
go test -v -race -cpu 1,4 google.golang.org/grpc/...
|
2015-05-24 17:05:35 +03:00
|
|
|
|
2017-06-13 00:52:33 +03:00
|
|
|
benchmark: benchdeps
|
|
|
|
go test google.golang.org/grpc/benchmark/... -benchmem -bench=. | tee /tmp/tmp.result && benchstat /tmp/tmp.result && rm /tmp/tmp.result
|
|
|
|
|
2015-05-24 17:05:35 +03:00
|
|
|
clean:
|
2016-03-29 01:05:04 +03:00
|
|
|
go clean -i google.golang.org/grpc/...
|
2015-09-29 03:40:23 +03:00
|
|
|
|
2015-09-29 03:44:12 +03:00
|
|
|
coverage: testdeps
|
2015-11-07 00:26:24 +03:00
|
|
|
./coverage.sh --coveralls
|
2016-03-29 01:05:04 +03:00
|
|
|
|
|
|
|
.PHONY: \
|
|
|
|
all \
|
|
|
|
deps \
|
|
|
|
updatedeps \
|
|
|
|
testdeps \
|
|
|
|
updatetestdeps \
|
|
|
|
build \
|
|
|
|
proto \
|
|
|
|
test \
|
|
|
|
testrace \
|
|
|
|
clean \
|
2017-06-13 00:52:33 +03:00
|
|
|
coverage \
|
|
|
|
benchdeps \
|
|
|
|
benchmark
|