-
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
packaging: validate installed rpms #4795
Conversation
@ssbarnea you need to sign your commits. |
☔ The latest upstream changes (presumably #4762) made this pull request unmergeable. Please resolve the merge conflicts. |
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.
I would really like to see the .repo
portion removed from this PR (it belongs in #4796) but will not block because of it.
As reviewer pointed on below comment, we may need to test with an older system to validate rpm building. Change-Id: Ie1b16db032e79eeb7ba9a674455ffa9023bae63d Needed-By: containers/podman#4795
Note to reviewers: is ok to see github-check that failed as it failed after successfully running the |
Previously we builded RPMs that contained an outdated conmon which was not compatible. From now on `make-install` will also call `podman version` and `podman info` in order to perform a minimal sanity check of the installation. Fixes: #4665 Signed-off-by: Sorin Sbarnea <[email protected]>
lgtm if we can get the last test to pass |
/approve |
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.
looks good to me
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: NevilleC, rhatdan, ssbarnea 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 |
If we are to switch to external conmon we need extra testing and it would outside the scope if this change. Not against but we need to assert availability on all rpm supported platforms (4 atm). |
/hold cancel |
/lgtm |
Previously we builded RPMs that contained an outdated conmon which was not compatible. From now on
make-install
will also callpodman version
andpodman info
in order to perform a minimal sanity check of the installation.Fixes: #4665