mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-10 22:17:36 +00:00
Implement get_check_archs for build-depends-indep
Signed-off-by: Ivo De Decker <ivodd@debian.org>
This commit is contained in:
parent
65128a13b7
commit
fa44a3f968
@ -791,6 +791,15 @@ class BuildDependsPolicy(BasePolicy):
|
||||
if dep_type == DependencyType.BUILD_DEPENDS:
|
||||
return [arch for arch in self.options.architectures if arch in archs]
|
||||
|
||||
# first try the all buildarch
|
||||
checkarchs = self._all_buildarch
|
||||
# then try the architectures where this source has arch specific
|
||||
# binaries (in the order of the architecture config file)
|
||||
checkarchs.extend(arch for arch in self.options.architectures if arch in archs and arch not in checkarchs)
|
||||
# then try all other architectures
|
||||
checkarchs.extend(arch for arch in self.options.architectures if arch not in checkarchs)
|
||||
return checkarchs
|
||||
|
||||
def _add_info_for_arch(self, arch, excuses_info, blockers, results, dep_type, target_suite, source_suite, excuse, verdict):
|
||||
if arch in excuses_info:
|
||||
for excuse_text in excuses_info[arch]:
|
||||
|
Loading…
x
Reference in New Issue
Block a user