-
Notifications
You must be signed in to change notification settings - Fork 500
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 tool dependencies into go.mod #460
Conversation
Integration tests failure for 7ed0179145e0bb2a7eaa95badae404b9e162e928 |
7ed0179
to
2360d4d
Compare
Integration tests failure for 2360d4db87853621d84d9dcbad2afd77439ec381 |
2360d4d
to
915d583
Compare
Integration tests failure for 915d5835b61b304f5baeb1f21e9a1b8d1e3f2a2d |
915d583
to
d509df1
Compare
Integration tests failure for d509df1c7221d7762b5a8e12729c265cbaf9dbab |
d509df1
to
f118e6a
Compare
Integration tests failure for f118e6a79df9a9e6b68a507777f3016143eed923 |
Makefile
Outdated
|
||
ci-e2e: ## Runs CI e2e tests. Requires GITHUB_AUTH_TOKEN env var to be set to GitHub personal access token | ||
ci-e2e: build-scorecard check-env e2e-cron | $(GINKGO) | ||
ci-e2e: build-scorecard check-env e2e-cron install| $(GINKGO) |
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.
Specifying install
as dependency will always install all dependencies when we run make ci-e2e
. Instead, we can have | $(GINKGO)
and provide a rule for $(GINKGO)
as:
$(GINKGO): install
That way, it'll only run the install command if $(GINKGO)
file doesn't exist. Wdyt?
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 agreed. Thanks!
Moved the tool dependencies into go.mod
f118e6a
to
349d3c3
Compare
Integration tests failure for c6f091e9d8d0d5a268615d8753c1f5e6503f972e |
5c58803
to
c0065dd
Compare
Integration tests success for 5c58803748f62f777b54451ba94d6494310cd8f2 |
c0065dd
to
ccb4646
Compare
Integration tests success for c0065dd56456224e8e285629809a7192afd5ca38 |
Integration tests success for ccb4646d795f25fe42ec1f8e162d84645a8cb391 |
ccb4646
to
99fd5d3
Compare
99fd5d3
to
3a1a47c
Compare
Integration tests success for 99fd5d3e40773b77badbde54616cfce3e5c63cea |
Integration tests success for 3a1a47c7972f61a9c697eb653867af1854d1fd60 |
check-linter: ## Install and run golang linter | ||
check-linter: | $(GOLANGGCI_LINT) | ||
check-linter: $(GOLANGGCI_LINT) |
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.
Shouldn't this be | $(GOLANGCI_LINT)
? We only care about if this file exists or not.
What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
Feature
What is the current behavior? (You can also link to an open issue here)
Feature - manage tool dependencies via go.mod #459
What is the new behavior (if this is a feature change)?
Moved the tool dependencies into go.mod
Does this PR introduce a breaking change? (What changes might users need to make in their application due to this PR?)
None
Other information:
None