Skip to content

Commit

Permalink
Exclude idl/ as a source of Go code (jaegertracing#6591)
Browse files Browse the repository at this point in the history
## Which problem is this PR solving?
- Part of jaegertracing#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 <[email protected]>
  • Loading branch information
yurishkuro authored Jan 22, 2025
1 parent cbad04b commit b689a86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*' \
Expand Down

0 comments on commit b689a86

Please sign in to comment.