diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-26 09:43:01 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-26 09:43:01 +0200 |
commit | cdc5c700bf7930d712a84712b936e9d0c9bd254f (patch) | |
tree | e7b0a670b94e87fa34de8df4b9aabca533e57f70 /bin | |
parent | d68682d4070619f5e344f7c198c6a8fef36dcc2e (diff) | |
download | jenkins.debian.net-cdc5c700bf7930d712a84712b936e9d0c9bd254f.tar.xz |
reproducible: only build note related pages for suite+architectures that are tested
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_notes.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index 8249ed87..1e9b02e8 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -434,6 +434,8 @@ if __name__ == '__main__': gen_packages_html([Package(x) for x in notes]) for suite in SUITES: for arch in ARCHS: + if arch == 'armhf' and suite != 'unstable': + continue build_page('notes', suite, arch) build_page('no_notes', suite, arch) build_page('FTBFS', suite, arch) |