diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-03-06 19:06:51 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-06 20:08:25 +0100 |
commit | ffaf3f99523c5b7423333d8bce8145b3e70c33a0 (patch) | |
tree | c94dd145d8dce3df1e40896fd64c4805d0814236 | |
parent | 62a956483e4163bff07a2cba9aa272ff0da2c3c1 (diff) | |
download | jenkins.debian.net-ffaf3f99523c5b7423333d8bce8145b3e70c33a0.tar.xz |
reproducible: scheduler: build pages for new packages. This is possible since the last commit, where a new 'untested' status was added
-rwxr-xr-x | bin/reproducible_scheduler.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index bc254fb0..8f19b17e 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -21,6 +21,7 @@ from urllib.request import urlopen from reproducible_common import * from reproducible_html_indexes import build_page +from reproducible_html_packages import gen_packages_html def call_apt_update(suite): @@ -121,6 +122,9 @@ def update_sources_tables(suite): log.critical('source in the reproducible db for the ' + suite + ' suite:' + str(pkgs_end[0][0])) sys.exit(1) + if pkgs_to_add: + log.info('Building pages for the new packages') + gen_packages_html(pkgs_to_add, no_clean=True) def print_schedule_result(suite, criteria, packages): |