-
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
Fix install-tools target #195
Conversation
It needs GO111MODULE env var and the recently added addlicense tool.
Codecov Report
@@ Coverage Diff @@
## master #195 +/- ##
=======================================
Coverage 72.74% 72.74%
=======================================
Files 105 105
Lines 6094 6094
=======================================
Hits 4433 4433
Misses 1435 1435
Partials 226 226 Continue to review full report at Codecov.
|
@@ -97,7 +97,8 @@ vet: | |||
|
|||
.PHONY: install-tools | |||
install-tools: | |||
go install golang.org/x/lint/golint | |||
GO111MODULE=on go install github.com/google/addlicense |
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.
Is this needed with Go 1.12 and newer?
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.
Yes, this is still needed for Go 1.12 since it still has the same default as 1.11: "auto". Per golang/go#31857 it seems that it will still be needed in Go 1.13.
Please rebase. |
* fix collector logs example * Update default image to 0.50.0 * Bump chart version * revert containerLog example
It needs GO111MODULE env var and the recently added addlicense tool.
/cc @ccaraman