mirror of
https://github.com/netbirdio/netbird.git
synced 2026-05-20 15:49:55 +00:00
15 lines
587 B
Bash
15 lines
587 B
Bash
# Pinned protobuf code-generation toolchain.
|
|
# Sourced by every proto generate.sh and the proto-generation-check CI workflow.
|
|
# When bumping a version, regenerate all *.pb.go files in the same PR.
|
|
|
|
# protoc release tag from https://github.com/protocolbuffers/protobuf/releases
|
|
# `protoc --version` reports `libprotoc ${PROTOC_VERSION}`.
|
|
# Generated pb.go headers embed `protoc v6.${PROTOC_VERSION}`.
|
|
PROTOC_VERSION="33.1"
|
|
|
|
# google.golang.org/protobuf/cmd/protoc-gen-go
|
|
PROTOC_GEN_GO_VERSION="v1.36.6"
|
|
|
|
# google.golang.org/grpc/cmd/protoc-gen-go-grpc
|
|
PROTOC_GEN_GO_GRPC_VERSION="v1.6.1"
|