| 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: | 2026-07-02 05:00:01 |
| Message-ID: | 596aaa67-e0cf-4848-8898-f43d4dac8c5a@gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers |
Hello hackers,
Please take a look at the June report on buildfarm failures:
# SELECT br, COUNT(*) FROM failures WHERE dt >= '2026-06-01' AND
dt < '2026-07-01' GROUP BY br;
REL_14_STABLE: 17
REL_15_STABLE: 10
REL_16_STABLE: 18
REL_17_STABLE: 41
REL_18_STABLE: 41
master: 114
-- Total: 241
(Counting test failures only, excluding indent-check, Configure, Build
errors, also excluding failures from fruitcrow..)
# SELECT COUNT(*) FROM (SELECT DISTINCT issue_link FROM failures WHERE
dt >= '2026-06-01' AND dt < '2026-07-01');
17
# SELECT issue_link, COUNT(*) FROM failures WHERE dt >= '2026-06-01' AND
dt < '2026-07-01' GROUP BY issue_link ORDER BY 2 DESC LIMIT 5;
https://www.postgresql.org/message-id/1151393.1781734980@sss.pgh.pa.us : 35
-- Fixed
https://www.postgresql.org/message-id/5ccbdbde-6467-4a10-bf4d-0be73a05ce8d@dunslane.net : 15
-- Fixed
https://www.postgresql.org/message-id/d92b18e8-00aa-4c32-95ff-7d807a427481%40vondra.me : 12
https://www.postgresql.org/message-id/E1wXskv-0026Ph-0q%40gemulon.postgresql.org : 9
-- Fixed
# SELECT COUNT(*) FROM failures WHERE dt >= '2026-06-01' AND
dt < '2026-07-01' AND issue_link IS NULL; -- Unsorted/unhelpful failures
134
Short-lived failures: 158
Best regards,
Alexander
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Michael Paquier | 2026-07-02 05:00:06 | Re: Prevent crash when calling pgstat functions with unregistered stats kind |
| Previous Message | Ashutosh Bapat | 2026-07-02 04:59:47 | Re: GetBufferDescriptor() being called for local buffers from MarkBufferDirtyHint() |