[#311] Rewrite make protoc target similarly to neofs-api-go

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
remotes/KirillovDenis/release/v0.21.1
Leonard Lyubich 2021-01-15 09:22:56 +03:00 committed by Alex Vanin
parent cd4055d0b7
commit 9050d41099
1 changed files with 2 additions and 4 deletions

View File

@ -58,16 +58,14 @@ test_dep:
# Regenerate proto files:
protoc:
@GOPRIVATE=github.com/nspcc-dev go mod vendor
# Install specific version for gogo-proto
@go list -f '{{.Path}}/...@{{.Version}}' -m github.com/gogo/protobuf | xargs go get -v
# Install specific version for protobuf lib
@go list -f '{{.Path}}/...@{{.Version}}' -m github.com/golang/protobuf | xargs go get -v
# Protoc generate
@for f in `find . -type f -name '*.proto' -not -path './vendor/*'`; do \
echo "⇒ Processing $$f "; \
protoc \
--proto_path=.:./vendor:./vendor/github.com/nspcc-dev/neofs-api-go:/usr/local/include:./pkg/services/control \
--gofast_out=plugins=grpc,paths=source_relative:. $$f; \
--proto_path=.:./vendor:/usr/local/include \
--go_out=plugins=grpc,paths=source_relative:. $$f; \
done
rm -rf vendor