-
Notifications
You must be signed in to change notification settings - Fork 54
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
Document Makefile and align .PHONY with available tasks #275
Conversation
0ccb8b7
to
8258c08
Compare
@@ -1,5 +1,3 @@ | |||
.PHONY: ui vendor build container-manager container-manager-push push container-frontend container-frontend-push container-backend container-backend-push |
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.
ui build push targets didn't exist anymore, moved the existing ones with the respective target to make it easier to keep these in sync (more easy to detect during a review).
58a491e
to
62a10d2
Compare
62a10d2
to
1bba0f8
Compare
8999b96
to
28575ec
Compare
This takes the latest patch release of similar to our previous version, except now we don't have the Go version duplicated in 3 places Signed-off-by: Marco Franssen <marco.franssen@gmail.com>
This caches based on the checksums Signed-off-by: Marco Franssen <marco.franssen@gmail.com>
28575ec
to
e7f4239
Compare
Signed-off-by: Marco Franssen <marco.franssen@gmail.com>
Signed-off-by: Marco Franssen <marco.franssen@gmail.com>
9851276
to
6f7d39a
Compare
6f7d39a
to
f5c764a
Compare
Some old .PHONY targets where there where the target itself wasn't there anymore. By defining the PHONY with the target it is easier to keep this in sync in the future Also added a help target that prints a nicely formatted help for every single make target. Signed-off-by: Marco Franssen <marco.franssen@gmail.com>
Splitting into separate workflow steps makes the workflow more transparant Signed-off-by: Marco Franssen <marco.franssen@gmail.com>
f5c764a
to
205dbd7
Compare
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.
This is a really nice update @marcofranssen Thank you!
LGTM!
Some old .PHONY targets where there where the target itself wasn't there anymore. By defining the PHONY with the target it is easier to keep this in sync in the future
Also added a help target that prints a nicely formatted help for every single make target.