-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Makefile: package
-> rpm
#19214
Makefile: package
-> rpm
#19214
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: lsm5 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@rhatdan PTAL |
I think |
LGTM |
|
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.
LGTM, one nit
rpm/update-spec-version.sh
Outdated
cd .. | ||
git archive --prefix=$PACKAGE-$GIT_DESCRIBE/ HEAD -o rpm/$PACKAGE-$GIT_DESCRIBE.tar.gz | ||
cd rpm |
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.
That final line is a NOP, causing the reader to waste time wondering why it's there. Should you need to repush for another reason (this one isn't a blocker), I would recommend
(cd .. && git archive ....)
(open paren, cd ..
, same archive command, close paren). git -C
would work too but then I think the rpm/PATH
is less clear.
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. I also added a --format=tar.gz
. PTAL
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.
Other than @edsantiago 's nit, LGTM
package and package-install targets have been renamed to rpm and rpm-install respectively for clarity. `make rpm` will now build rpm using HEAD. Resolves: containers#18817 [NO NEW TESTS NEEDED] Signed-off-by: Lokesh Mandvekar <[email protected]>
/lgtm |
/cherry-pick v4.6 |
@lsm5: new pull request created: #19226 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
package and package-install targets have been renamed to rpm and rpm-install respectively for clarity.
make rpm
will now build rpm using HEAD.Does this PR introduce a user-facing change?