-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move tools to internal, create module to avoid dependency problems #2131
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2131 +/- ##
==========================================
- Coverage 92.23% 92.02% -0.21%
==========================================
Files 280 270 -10
Lines 16977 15809 -1168
==========================================
- Hits 15658 14549 -1109
+ Misses 904 859 -45
+ Partials 415 401 -14
Continue to review full report at Codecov.
|
9090b52
to
740a2fe
Compare
@@ -15,6 +16,8 @@ ALL_PKGS := $(shell go list $(sort $(dir $(ALL_SRC)))) | |||
ALL_DOC := $(shell find . \( -name "*.md" -o -name "*.yaml" \) \ | |||
-type f | sort) | |||
|
|||
TOOLS_MOD_DIR := ./internal/tools |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use TOOLS_MOD_DIR in line 4?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A bit ugly to have "$(TOOLS_MOD_DIR)/*"
. Your call, we can do a separate PR.
This way we avoid dependency conflicts between tools and main codebase. Signed-off-by: Bogdan Drutu <[email protected]>
Signed-off-by: Bogdan Drutu <[email protected]>
740a2fe
to
eab8201
Compare
Signed-off-by: Bogdan Drutu <[email protected]>
eab8201
to
de53e11
Compare
Signed-off-by: Bogdan Drutu <[email protected]>
Signed-off-by: Bogdan Drutu <[email protected]>
9d33cca
to
f1b5712
Compare
…#2131) * Fix Jaeger exporter agent port default value and docs * Update changelog * Revert example
…#2131) Bumps [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) from 1.5.4 to 1.6.0. - [Release notes](https://github.com/fsnotify/fsnotify/releases) - [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md) - [Commits](fsnotify/fsnotify@v1.5.4...v1.6.0) --- updated-dependencies: - dependency-name: github.com/fsnotify/fsnotify dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This way we avoid dependency conflicts between tools and main codebase.
Signed-off-by: Bogdan Drutu [email protected]