From 3c99a2fe9043c8c04eea4e774eb56f5d2fba5f6d Mon Sep 17 00:00:00 2001 From: Matt Lord Date: Sun, 24 Mar 2024 12:20:43 -0400 Subject: [PATCH] Generate vtctldclient client code from vtctlservice.proto on make proto We will also then be checking for drift in the static_checks workflow as part of the check_make_proto step. Signed-off-by: Matt Lord --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 850430c36ee..6b14719ac10 100644 --- a/Makefile +++ b/Makefile @@ -257,7 +257,7 @@ PROTO_SRCS = $(wildcard proto/*.proto) PROTO_SRC_NAMES = $(basename $(notdir $(PROTO_SRCS))) PROTO_GO_OUTS = $(foreach name, $(PROTO_SRC_NAMES), go/vt/proto/$(name)/$(name).pb.go) # This rule rebuilds all the go files from the proto definitions for gRPC. -proto: $(PROTO_GO_OUTS) vtadmin_web_proto_types +proto: $(PROTO_GO_OUTS) vtadmin_web_proto_types vtctldclient ifndef NOBANNER echo $$(date): Compiling proto definitions