diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-26 02:08:14 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-26 02:09:42 +0200 |
commit | f3d5f4b012de517108fb4e1e8d8698121d13a1c3 (patch) | |
tree | 42fda5ead7204cb436a5c12066ca3410e488f290 /bin | |
parent | d8495dbca49f77a1f378823d3935ac6a9d745dc9 (diff) | |
download | jenkins.debian.net-f3d5f4b012de517108fb4e1e8d8698121d13a1c3.tar.xz |
reproducible: only build index pages for suite+architectures that are tested
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_indexes.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py index b592544c..f02ce40c 100755 --- a/bin/reproducible_html_indexes.py +++ b/bin/reproducible_html_indexes.py @@ -567,6 +567,8 @@ if __name__ == '__main__': generate_schedule() for suite in SUITES: for arch in ARCHS: + if arch == 'armhf' and suite != 'unstable': + continue for page in pages.keys(): if 'global' not in pages[page] or not pages[page]['global']: build_page(page, suite, arch) |