mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00

Removes gogo/protobuf from buildx and updates to a version of moby/buildkit where gogo is removed. This also changes how the proto files are generated. This is because newer versions of protobuf are more strict about name conflicts. If two files have the same name (even if they are relative paths) and are used in different protoc commands, they'll conflict in the registry. Since protobuf file generation doesn't work very well with `paths=source_relative`, this removes the `go:generate` expression and just relies on the dockerfile to perform the generation. Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
50 lines
953 B
Makefile
50 lines
953 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
|
|
./scripts/vet.sh
|
|
|
|
vetdeps:
|
|
./scripts/vet.sh -install
|
|
|
|
.PHONY: \
|
|
all \
|
|
build \
|
|
clean \
|
|
deps \
|
|
proto \
|
|
test \
|
|
testsubmodule \
|
|
testrace \
|
|
testdeps \
|
|
vet \
|
|
vetdeps
|