-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
add TAGS variable prereq on make targets that use it #10219
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
Conversation
820ef7f
to
b7c3184
Compare
Write out TAGS to .make_evidence/tags and compare it to the previous invocation. If they differ, insert the evidence file into the prereqs of targets that use TAGS. I made it .PHONY so it always builds. I did not include the prereq on release tasks, asssuming the will always do a clean build. Fixes: go-gitea#10196
b7c3184
to
76faf20
Compare
Codecov Report
@@ Coverage Diff @@
## master #10219 +/- ##
==========================================
+ Coverage 43.64% 43.64% +<.01%
==========================================
Files 576 576
Lines 79716 79716
==========================================
+ Hits 34791 34794 +3
+ Misses 40627 40625 -2
+ Partials 4298 4297 -1
Continue to review full report at Codecov.
|
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.
Nice! 👍
wake up LGTM |
Write out TAGS to .make_evidence/tags and compare it to the previous invocation. If they differ, insert the evidence file into the prereqs of targets that use TAGS. I made it
.PHONY
so it always builds.I did not include the prereq on release tasks, assuming they will always do a clean build.
Fixes: #10196