-
Notifications
You must be signed in to change notification settings - Fork 62
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
rpmbuild: don't set bootstrap_image_ready for rawhide #3144
Conversation
rpmbuild/mock-custom-build.cfg.j2
Outdated
@@ -2,9 +2,12 @@ include('/etc/mock/{{ chroot }}.cfg') | |||
config_opts['rpmbuild_networking'] = True | |||
config_opts['use_host_resolv'] = True | |||
|
|||
{# See https://github.com/fedora-copr/copr/issues/3140 #} | |||
{%- if not chroot.startswith("fedora-rawhide-") %} |
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.
We really need "fedora-40" in chroot
condition here. Because of rpm-software-management/mock#1332
5776f2d
to
cc2c83a
Compare
rpmbuild/mock-custom-build.cfg.j2
Outdated
@@ -2,9 +2,12 @@ include('/etc/mock/{{ chroot }}.cfg') | |||
config_opts['rpmbuild_networking'] = True | |||
config_opts['use_host_resolv'] = True | |||
|
|||
{# See https://github.com/fedora-copr/copr/issues/3140 #} | |||
{%- if not chroot.startswith(("fedora-rawhide-", "fedora-40-")) %} |
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.
Only F40
cc2c83a
to
1b06675
Compare
Updated |
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, we need to keep the downstream patch till DNF5 appears in the fedora:41 container, though.
Fix #3140