add a logline stating the architecture for binary package

Since we can't seem to figure out where we're going wrong, I thought I'd
just add verbose logging here and hope it helps with debugging the new
feature, which aims to reduce the number of i386 tests queued.
This commit is contained in:
Tim Andersson 2024-08-09 09:47:12 +01:00
parent ac324406a0
commit 2f6b76f0b5
No known key found for this signature in database
GPG Key ID: 50AF67504D9E703D

View File

@ -708,6 +708,7 @@ class AutopkgtestPolicy(BasePolicy):
all_binaries_arch_all = True
for package_name in binaries_info.keys():
bin_arch = binaries_info[package_name].architecture or 'all'
self.logger.info('Binary has arch %s for binary %s', bin_arch, package_name)
if bin_arch != 'all':
all_binaries_arch_all = False
break