diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-20 08:53:52 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-20 08:53:52 +0200 |
commit | 9265802698c8f41c23901ef6b4672a8cc0d3a828 (patch) | |
tree | 19bd459fcea292db39223ecb7652da78485def8b /bin | |
parent | c8a337b76ddaea24a1600ec4bc304f498829b455 (diff) | |
download | jenkins.debian.net-9265802698c8f41c23901ef6b4672a8cc0d3a828.tar.xz |
reproducible: improve job output, include arch
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_scheduler.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 84cfd947..3a47f77c 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -391,7 +391,7 @@ def schedule_untested_packages(arch, total): many_untested, suite, arch) packages[suite] = query_untested_packages(suite, arch, many_untested) log.info('Received ' + str(len(packages[suite])) + - ' untested packages in ' + suite + ' to schedule.') + ' untested packages in ' + suite + '/' + arch + 'to schedule.') log.info('--------------------------------------------------------------') msg = add_up_numbers(packages, arch) if msg != '0': @@ -411,7 +411,7 @@ def schedule_new_versions(arch, total): many_new, suite, arch) packages[suite] = query_new_versions(suite, arch, many_new) log.info('Received ' + str(len(packages[suite])) + - ' new packages in ' + suite + ' to schedule.') + ' new packages in ' + suite + '/' + arch + ' to schedule.') log.info('--------------------------------------------------------------') msg = add_up_numbers(packages, arch) if msg != '0': @@ -431,7 +431,7 @@ def schedule_old_ftbfs_versions(arch, total): suite, arch) packages[suite] = query_old_ftbfs_versions(suite, arch, old_ftbfs) log.info('Received ' + str(len(packages[suite])) + - ' old ftbfs packages in ' + suite + ' to schedule.') + ' old ftbfs packages in ' + suite '/' + arch + + ' to schedule.') log.info('--------------------------------------------------------------') msg = add_up_numbers(packages, arch) if msg != '0': @@ -451,7 +451,7 @@ def schedule_old_versions(arch, total): suite, arch) packages[suite] = query_old_versions(suite, arch, many_old) log.info('Received ' + str(len(packages[suite])) + - ' old packages in ' + suite + ' to schedule.') + ' old packages in ' + suite '/' + arch + + ' to schedule.') log.info('--------------------------------------------------------------') msg = add_up_numbers(packages, arch) if msg != '0': |