-
Notifications
You must be signed in to change notification settings - Fork 10
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
Change build order #113
Change build order #113
Conversation
Code Coverage Summary
Linter reportsThe reports are too big to be posted here. View full reports on the Job Summary page. |
build_node/mock/mock_config.py
Outdated
@@ -286,7 +286,7 @@ def get_default_legal_host_arches(target_arch): | |||
return 'x86_64', | |||
elif target_arch in ('i386', 'i586', 'i686'): | |||
return 'i386', 'i586', 'i686', 'x86_64' | |||
elif target_arch == 'noarch': | |||
elif target_arch == 'noarch' or target_arch == 'src': |
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.
can't we do a target_arch in ('noarch', 'src')
here?
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.
It looks good, except a Javier's comment
Resolves: AlmaLinux/build-system#212