From b689a8698267f147e35898571e1b49bfbe099f5e Mon Sep 17 00:00:00 2001 From: Yuri Shkuro Date: Tue, 21 Jan 2025 22:19:15 -0400 Subject: [PATCH] Exclude idl/ as a source of Go code (#6591) ## Which problem is this PR solving? - Part of #6494 - Since `jaeger-idl` repo now includes Go code, as soon as we update the submodule here it's treated as a real source of Go code, including by tools like `go fmt`, etc. ## Description of the changes - Exclude `idl/` from ALL_SOURCES, so that `make fmt` does not apply to it - Bump `idl` submodule to latest ## How was this change tested? - CI Signed-off-by: Yuri Shkuro --- Makefile | 1 + idl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e903f95e3a9..4337ead083e 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,7 @@ ALL_SRC = $(shell find . -name '*.go' \ -not -name 'mocks*' \ -not -name '*.pb.go' \ -not -path './vendor/*' \ + -not -path './idl/*' \ -not -path './internal/tools/*' \ -not -path './docker/debug/*' \ -not -path '*/mocks/*' \ diff --git a/idl b/idl index 2a6ba696070..bdfc239c55c 160000 --- a/idl +++ b/idl @@ -1 +1 @@ -Subproject commit 2a6ba6960701dc52abdc98a4671af0c5646e3734 +Subproject commit bdfc239c55cdff96bd3b1caaf6849ada43d7402e