mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
b85076365c
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.40.0 to 1.41.0. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](https://github.com/grpc/grpc-go/compare/v1.40.0...v1.41.0) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
47 lines
900 B
Makefile
47 lines
900 B
Makefile
all: vet test testrace
|
|
|
|
build:
|
|
go build google.golang.org/grpc/...
|
|
|
|
clean:
|
|
go clean -i google.golang.org/grpc/...
|
|
|
|
deps:
|
|
GO111MODULE=on 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:
|
|
go test -cpu 1,4 -timeout 7m google.golang.org/grpc/...
|
|
|
|
testsubmodule:
|
|
cd security/advancedtls && go test -cpu 1,4 -timeout 7m google.golang.org/grpc/security/advancedtls/...
|
|
cd security/authorization && go test -cpu 1,4 -timeout 7m google.golang.org/grpc/security/authorization/...
|
|
|
|
testrace:
|
|
go test -race -cpu 1,4 -timeout 7m google.golang.org/grpc/...
|
|
|
|
testdeps:
|
|
GO111MODULE=on go get -d -v -t google.golang.org/grpc/...
|
|
|
|
vet: vetdeps
|
|
./vet.sh
|
|
|
|
vetdeps:
|
|
./vet.sh -install
|
|
|
|
.PHONY: \
|
|
all \
|
|
build \
|
|
clean \
|
|
proto \
|
|
test \
|
|
testrace \
|
|
vet \
|
|
vetdeps
|