diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-06-15 00:56:07 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-15 08:18:02 +0200 |
commit | a282597b28e907fc85d6da85ec002c838a09c5a0 (patch) | |
tree | ebe4d973e492e36deb9649370b98f369029de0ce | |
parent | 45940e58fda8c057e6bcc0c1a54665dc04b98881 (diff) | |
download | jenkins.debian.net-a282597b28e907fc85d6da85ec002c838a09c5a0.tar.xz |
reproducible: html_packages: do not complain about missing .buildinfo for untested, blacklisted, ftbfs and not-for-us 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 a2a91c6d..72b53f63 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -154,7 +154,7 @@ def gen_extra_links(package, version, suite, arch, status): links += '<a href="' + url + '" target="main">buildinfo</a>\n' if not default_view: default_view = url - else: + elif status not in ('untested', 'blacklisted', 'FTBFS', 'not for us'): log.critical('buildinfo not detected at ' + buildinfo) rbuild = pkg_has_rbuild(package, version, suite, arch) if rbuild: # being a tuple (rbuild path, size), empty if non existant |