最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

protocol buffers - What is the recommended way to dynamically pull google .proto dependencies - Stack Overflow

programmeradmin3浏览0评论

What is the recommended way to dynamically pull google .proto dependencies so that they are available available to protoc-gen-go-grpc? We are trying to avoid committing these files to our own git repos, due to the extreme duplication this will end up causing.

All my google searches on this are coming up blank. I know this can't be a new issue but for some reason, google just isn't giving me anything useful here.

As an example I have a dependency:

import "google/api/annotations.proto";

Is there a recommended approach / recommended source for downloading these files on-demand in CI?

What is the recommended way to dynamically pull google .proto dependencies so that they are available available to protoc-gen-go-grpc? We are trying to avoid committing these files to our own git repos, due to the extreme duplication this will end up causing.

All my google searches on this are coming up blank. I know this can't be a new issue but for some reason, google just isn't giving me anything useful here.

As an example I have a dependency:

import "google/api/annotations.proto";

Is there a recommended approach / recommended source for downloading these files on-demand in CI?

Share Improve this question edited 2 days ago Philip Couling asked 2 days ago Philip CoulingPhilip Couling 15k8 gold badges71 silver badges98 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

I maintain a clone of googleapis and use an environment variable to reference it. Then, whenever I invoke protoc, I add --proto_path=${GOOGLEAPIS} to ensure these are available.:

GOOGLEAPIS="/path/to/googleapis"

protoc \
--proto_path=${GOOGLEAPIS} \
...

This approach can be applied to other well-defined sets of protocol buffer sources too including your own corporate hierarchy.

For example, gRPC maintains a "canonical set of common protocol buffers" called grpc-proto including e.g. grpc.health.v1.Health and this can be bundled:

GRPCPROTOS="/path/to/grpc-proto"

protoc \
--proto_path=${GOOGLEAPIS} \
--proto_path=${GRPCPROTOS} \
...
发布评论

评论列表(0)

  1. 暂无评论