| 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-11-01 08:00:00 |
| Message-ID: | f9bd3edd-7b98-48d7-99a1-dc23d374eae6@gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers |
Hello hackers,
Please take a look at the October report on buildfarm failures:
# SELECT br, COUNT(*) FROM failures WHERE dt >= '2025-10-01' AND
dt < '2025-11-01' GROUP BY br;
REL_13_STABLE: 18
REL_14_STABLE: 9
REL_15_STABLE: 4
REL_16_STABLE: 8
REL_17_STABLE: 13
REL_18_STABLE: 66
master: 64
-- Total: 182
(Counting test failures only, excluding indent-check, Configure, Build
errors.)
# SELECT COUNT(*) FROM (SELECT DISTINCT issue_link FROM failures WHERE
dt >= '2025-10-01' AND dt < '2025-11-01');
25
# SELECT issue_link, COUNT(*) FROM failures WHERE dt >= '2025-10-01' AND
dt < '2025-11-01' GROUP BY issue_link ORDER BY 2 DESC LIMIT 6;
https://www.postgresql.org/message-id/CAMbWs4_VxjdM-nBvt8YE%3D84rE4OLBES27Wz1P0%3D9Z6KgwPqzEA%40mail.gmail.com : 41
-- Fixed
https://www.postgresql.org/message-id/2874644f-6431-41f4-abe2-99e5ab052606%40gmail.com : 28
-- Hurd
https://www.postgresql.org/message-id/2e327a21-9954-4d05-aa9e-3b7fe926f39f%40joeconway.com : 16
-- Fixed
https://www.postgresql.org/message-id/aPAl27_urHSODwRN%40paquier.xyz : 16
-- Fixed
https://www.postgresql.org/message-id/66541690-91c2-48e6-9c99-12c9af25012b%40joeconway.com : 10
# SELECT COUNT(*) FROM failures WHERE dt >= '2025-10-01' AND
dt < '2025-11-01' AND issue_link IS NULL; -- Unsorted/unhelpful failures
16
Short-lived failures:
75
Best regards,
Alexander
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Etsuro Fujita | 2025-11-01 11:18:41 | postgres_fdw: Add more test coverage for EvalPlanQual testing |
| Previous Message | Thomas Munro | 2025-11-01 05:21:35 | Re: meson's in-tree libpq header search order vs -Dextra_include_dirs |