[Git][qa/jenkins.debian.net][master] 2 commits: revert: rebuilder_stats: Classify packages affected by 1-second offset issue (#1089088)
Holger Levsen (@holger)
gitlab at salsa.debian.org
Sun Dec 15 18:32:11 GMT 2024
Holger Levsen pushed to branch master at Debian QA / jenkins.debian.net
Commits:
a7c3e8b7 by Holger Levsen at 2024-12-15T19:30:53+01:00
revert: rebuilder_stats: Classify packages affected by 1-second offset issue (#1089088)
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
a319a873 by Holger Levsen at 2024-12-15T19:32:01+01:00
mostly revert: reproduce.d.n/stats: only update 4 times a day
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
3 changed files:
- bin/rebuilderd_stats.py
- hosts/infom07-i386/etc/cron.d/rebuilderd
- hosts/osuosl5-amd64/etc/cron.d/rebuilderd
Changes:
=====================================
bin/rebuilderd_stats.py
=====================================
@@ -2,7 +2,7 @@
from collections import defaultdict
from datetime import datetime
-from re import search, DOTALL
+from re import search
from sqlite3 import connect
from sys import argv
@@ -11,7 +11,7 @@ def main() -> None:
arch = argv[1]
db = argv[2]
cx = connect(db)
- cx.create_function("regexp", 2, lambda x, y: 1 if search(x, (y or ''), DOTALL) else 0)
+ cx.create_function("regexp", 2, lambda x, y: 1 if search(x, y) else 0)
cu = cx.cursor()
log = "CAST(b.build_log AS TEXT)"
@@ -55,7 +55,6 @@ def main() -> None:
fr" or {log} regexp 'checking [^ ]*: size... value of [^ ]* differs for [^ ]*$')": "failed to reproduce",
f"{log} like '%rebuilderd: unexpected error while rebuilding package:"
" Failed to run diffoscope: No such file or directory (os error 2)%'": "diffoscope not found (fixed)",
- r"b.diffoscope is not null and b.diffoscope regexp ' -([drwx-]{10} .* [0-9]+ [0-9-]{10} [012][0-9]:).* \+\1'": "failed to reproduce: 1-second offset (#1089088)",
r_packages: "failed to reproduce: R package (#1089197)",
f"b.diffoscope like '%buildinfo_{arch}.gz%' or b.diffoscope like '%buildinfo_all.gz%'": "failed to reproduce: dh_buildinfo (#1068809)",
f"({log} like '%.deb: size... md5... sha256... sha1... all OK_' or {log} like '%.deb: size... md5... sha1... sha256... all OK_')": "rebuilderd error"
=====================================
hosts/infom07-i386/etc/cron.d/rebuilderd
=====================================
@@ -1,3 +1,3 @@
MAILTO=root
-42 4,10,16,22 * * * rebuilderd mkdir -p /srv/rebuilderd/stats/ && /srv/jenkins/bin/rebuilderd_stats.py i386 /srv/rebuilderd/rebuilderd.db > /srv/rebuilderd/stats/index.html.tmp && mv /srv/rebuilderd/stats/index.html.tmp /srv/rebuilderd/stats/index.html
+42 * * * * rebuilderd mkdir -p /srv/rebuilderd/stats/ && /srv/jenkins/bin/rebuilderd_stats.py i386 /srv/rebuilderd/rebuilderd.db > /srv/rebuilderd/stats/index.html.tmp && mv /srv/rebuilderd/stats/index.html.tmp /srv/rebuilderd/stats/index.html
23 0,6,12,18 * * * rebuilderd /srv/jenkins/bin/rebuilderd_graph.sh i386
=====================================
hosts/osuosl5-amd64/etc/cron.d/rebuilderd
=====================================
@@ -1,3 +1,3 @@
MAILTO=root
-42 4,10,16,22 * * * rebuilderd mkdir -p /srv/rebuilderd/stats/ && /srv/jenkins/bin/rebuilderd_stats.py amd64 /srv/rebuilderd/rebuilderd.db > /srv/rebuilderd/stats/index.html.tmp && mv /srv/rebuilderd/stats/index.html.tmp /srv/rebuilderd/stats/index.html
+42 * * * * rebuilderd mkdir -p /srv/rebuilderd/stats/ && /srv/jenkins/bin/rebuilderd_stats.py amd64 /srv/rebuilderd/rebuilderd.db > /srv/rebuilderd/stats/index.html.tmp && mv /srv/rebuilderd/stats/index.html.tmp /srv/rebuilderd/stats/index.html
23 0,6,12,18 * * * rebuilderd /srv/jenkins/bin/rebuilderd_graph.sh amd64
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/-/compare/6f3262cbf44c79577ebbf2a42ca95c8fc4a53109...a319a873cf68f3dc87b0736b4f0ecbabc4d73cfc
--
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/-/compare/6f3262cbf44c79577ebbf2a42ca95c8fc4a53109...a319a873cf68f3dc87b0736b4f0ecbabc4d73cfc
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/qa-jenkins-scm/attachments/20241215/53c5cfb0/attachment-0001.htm>
More information about the Qa-jenkins-scm
mailing list