mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-27 14:39:40 -08:00
375ad1185c
* *: bump gRPC dependencies This change updates the gRPC dependencies to more recent versions: * github.com/gogo/protobuf => v1.2.0 * github.com/grpc-ecosystem/grpc-gateway => v1.6.3 * google.golang.org/grpc => v1.17.0 In addition scripts/genproto.sh leverages Go modules information instead of hardcoding SHA1 commits. This ensures that the code is generated from the exact same sources. Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Run 'make proto' in CI Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Revert tabs -> spaces change Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Fix 'make proto' step Signed-off-by: Simon Pasquier <spasquie@redhat.com> * 'go get' grpc/protobuf dependencies Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Prepopulate cache with go mod download Signed-off-by: Simon Pasquier <spasquie@redhat.com>
61 lines
1.1 KiB
Makefile
61 lines
1.1 KiB
Makefile
all: vet test testrace testappengine
|
|
|
|
build: deps
|
|
go build google.golang.org/grpc/...
|
|
|
|
clean:
|
|
go clean -i google.golang.org/grpc/...
|
|
|
|
deps:
|
|
go get -d -v google.golang.org/grpc/...
|
|
|
|
proto:
|
|
@ if ! which protoc > /dev/null; then \
|
|
echo "error: protoc not installed" >&2; \
|
|
exit 1; \
|
|
fi
|
|
go generate google.golang.org/grpc/...
|
|
|
|
test: testdeps
|
|
go test -cpu 1,4 -timeout 7m google.golang.org/grpc/...
|
|
|
|
testappengine: testappenginedeps
|
|
goapp test -cpu 1,4 -timeout 7m google.golang.org/grpc/...
|
|
|
|
testappenginedeps:
|
|
goapp get -d -v -t -tags 'appengine appenginevm' google.golang.org/grpc/...
|
|
|
|
testdeps:
|
|
go get -d -v -t google.golang.org/grpc/...
|
|
|
|
testrace: testdeps
|
|
go test -race -cpu 1,4 -timeout 7m google.golang.org/grpc/...
|
|
|
|
updatedeps:
|
|
go get -d -v -u -f google.golang.org/grpc/...
|
|
|
|
updatetestdeps:
|
|
go get -d -v -t -u -f google.golang.org/grpc/...
|
|
|
|
vet: vetdeps
|
|
./vet.sh
|
|
|
|
vetdeps:
|
|
./vet.sh -install
|
|
|
|
.PHONY: \
|
|
all \
|
|
build \
|
|
clean \
|
|
deps \
|
|
proto \
|
|
test \
|
|
testappengine \
|
|
testappenginedeps \
|
|
testdeps \
|
|
testrace \
|
|
updatedeps \
|
|
updatetestdeps \
|
|
vet \
|
|
vetdeps
|