summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-04-04 14:47:31 +0200
committerHolger Levsen <holger@layer-acht.org>2015-04-04 14:49:15 +0200
commit160beb49d096ee83fb8f7d61a15acd070d9b5c1c (patch)
tree92090a938376a22579423bb0ad46e26bef5f13b2 /bin/reproducible_html_notes.py
parentd48b387a88079943698966c45fd4dc2a71243649 (diff)
downloadjenkins.debian.net-160beb49d096ee83fb8f7d61a15acd070d9b5c1c.tar.xz
reproducible: html_notes: rebuild FTBFS indexes page after updating the notes
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-xbin/reproducible_html_notes.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py
index 5046e836..d92f9a90 100755
--- a/bin/reproducible_html_notes.py
+++ b/bin/reproducible_html_notes.py
@@ -14,6 +14,7 @@ import copy
import yaml
from reproducible_common import *
from reproducible_html_packages import gen_packages_html
+from reproducible_html_indexes import build_page
NOTES = 'packages.yml'
ISSUES = 'issues.yml'
@@ -492,3 +493,6 @@ if __name__ == '__main__':
index_no_notes(notes, bugs)
purge_old_notes(notes)
gen_packages_html(notes) # regenerate all rb-pkg/ pages
+ for suite in SUITES:
+ for arch in ARCHES:
+ build_page('FTBFS', suite, arch)