From: | Alexander Lakhin <exclusion(at)gmail(dot)com> |
---|---|
To: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Improving tracking/processing of buildfarm test failures |
Date: | 2025-10-01 19:00:00 |
Message-ID: | 74cb36da-044b-4dfa-af41-5093a20fda02@gmail.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Hello hackers,
Please take a look at the September report on buildfarm failures:
# SELECT br, COUNT(*) FROM failures WHERE dt >= '2025-09-01' AND
dt < '2025-10-01' GROUP BY br;
REL_13_STABLE: 7
REL_14_STABLE: 3
REL_15_STABLE: 5
REL_16_STABLE: 7
REL_17_STABLE: 15
REL_18_STABLE: 27
master: 83
-- Total: 147
(Counting test failures only, excluding indent-check, Configure, Build
errors.)
# SELECT COUNT(*) FROM (SELECT DISTINCT issue_link FROM failures WHERE
dt >= '2025-09-01' AND dt < '2025-10-01');
15
# SELECT issue_link, COUNT(*) FROM failures WHERE dt >= '2025-09-01' AND
dt < '2025-10-01' GROUP BY issue_link ORDER BY 2 DESC LIMIT 6;
https://www.postgresql.org/message-id/443709.1757876535@sss.pgh.pa.us : 36
-- Fixed
https://www.postgresql.org/message-id/2874644f-6431-41f4-abe2-99e5ab052606%40gmail.com : 19
-- Hurd
https://www.postgresql.org/message-id/aMoejB3iTWy1SxfF%40paquier.xyz : 17
-- Fixed
https://www.postgresql.org/message-id/E1uxCW0-000Q4A-2d%40gemulon.postgresql.org : 8
-- Fixed
# SELECT COUNT(*) FROM failures WHERE dt >= '2025-09-01' AND
dt < '2025-10-01' AND issue_link IS NULL; -- Unsorted/unhelpful failures
23
Short-lived failures: 71
Best regards,
Alexander
From | Date | Subject | |
---|---|---|---|
Next Message | Andrew Dunstan | 2025-10-01 20:02:13 | Re: split func.sgml to separated individual sgml files |
Previous Message | Jacob Champion | 2025-10-01 16:55:42 | Re: test_json_parser/002_inline is kind of slow |