-
Notifications
You must be signed in to change notification settings - Fork 303
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
Add e2e make rule #88
Conversation
/ok-to-test |
Can you squash the commits? |
37538c3
to
bba0aae
Compare
Makefile
Outdated
@@ -42,3 +42,9 @@ VERBOSE ?= 0 | |||
|
|||
# Include standard build rules. | |||
include build/rules.mk | |||
|
|||
# Additional rule to build an image of glbc for e2e testing. | |||
e2e: |
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.
push-e2e
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.
Done
Add e2e target Add e2e target Add push for e2e target Addressed comments
bba0aae
to
eccfc53
Compare
@@ -42,3 +42,7 @@ VERBOSE ?= 0 | |||
|
|||
# Include standard build rules. | |||
include build/rules.mk | |||
|
|||
# Additional rule to build an image of glbc for e2e testing. | |||
push-e2e: |
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.
Probably put this into build/rules.mk?
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.
In rules.mk it says "These build rules should not need to be modified." I was under the impression that this meant new rules should not be added but I could be wrong.
/lgtm |
Adds a new rule to the Makefile which pushes an image of glbc for e2e testing. This target basically does the same thing as a regular build and push but we need it for two reasons: