diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-03-20 19:09:48 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-20 19:10:37 +0100 |
commit | 0adc65510c6d447f6fdb8605fd59d45f9da3a339 (patch) | |
tree | 4e5a2474d82dc7677d5c07930fb1720013479e6f | |
parent | c07b9143dcaed524e907d26f2016e7688d306670 (diff) | |
download | jenkins.debian.net-0adc65510c6d447f6fdb8605fd59d45f9da3a339.tar.xz |
reproducible: html_packages: do not complain for missing buildlogs for not-for-us and blacklisted packages
-rwxr-xr-x | bin/reproducible_html_packages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index 67d2ec45..51d7979f 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -149,7 +149,7 @@ def gen_extra_links(package, version, suite, arch, status): sizeof_fmt(log_size) + ')</a>\n' if not default_view: default_view = url - elif status != 'untested': + elif status not in ('untested', 'not for us', 'blacklisted'): log.critical(REPRODUCIBLE_URL + '/' + suite + '/' + arch + '/' + package + ' didn\'t produce a buildlog, even if it has been built.') default_view = '/untested.html' if not default_view else default_view |