[Git][qa/jenkins.debian.net][master] rdn stats: support rb-notes issues
Holger Levsen (@holger)
gitlab at salsa.debian.org
Tue Jun 9 12:59:08 BST 2026
Holger Levsen pushed to branch master at Debian QA / jenkins.debian.net
Commits:
a17813b0 by Jochen Sprickerhof at 2026-06-09T13:58:57+02:00
rdn stats: support rb-notes issues
(cherry picked from commit f8b1e51f95582e74c6282114ccab70bf76a03de8)
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
1 changed file:
- bin/rebuilderd_stats.py
Changes:
=====================================
bin/rebuilderd_stats.py
=====================================
@@ -263,7 +263,7 @@ def output(outfile, arch, db_size, total, messages_packages, size_sort, api, rel
def sorter(pkg):
if rn_bug := rn_bugs.get(pkg["src"]):
- if "bugs" in rn_bug or "comments" in rn_bug:
+ if any(x in rn_bug for x in ("bugs", "comments", "issues")):
if size_sort and pkg["diff"]:
return 1 - 1 / pkg["diff"]
return -1
@@ -304,6 +304,8 @@ def output(outfile, arch, db_size, total, messages_packages, size_sort, api, rel
print(f'<span title="{comments}">🗈</span>', end='', file=outfile)
for bug in rn_bug.get("bugs", []):
print(f'<a style="color: #FF0000;" href="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug={bug}">#</a>', end='', file=outfile)
+ for issue in rn_bug.get("issues", []):
+ print(f'<a href="https://tests.reproducible-builds.org/debian/issues/unstable/{issue}.html">🐛</a>', end='', file=outfile)
print(" ", file=outfile)
span += 1
if span == 256:
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/-/commit/a17813b0a559d1e5988686e97654d56d2c97b3ef
--
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/-/commit/a17813b0a559d1e5988686e97654d56d2c97b3ef
You're receiving this email because of your account on salsa.debian.org. Manage all notifications: https://salsa.debian.org/-/profile/notifications | Help: https://salsa.debian.org/help
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/qa-jenkins-scm/attachments/20260609/8478abe8/attachment-0001.htm>
More information about the Qa-jenkins-scm
mailing list