June, BuildFarm and ABIs

If you might have read my previous blog posts, you would know that I am working on an automated ABI compliance reporting system for PostgreSQL as part of my GSoC 2025 project. In this blog post, I will discuss the current progress and implementation details of this system, as well as its integration with the PostgreSQL build farm. Current Progress According to my estimated timeline, I should have completed the basic implementation of the ABI compliance checker module and started receiving reports on the server by now. With a slight delay, the client implementation is almost complete (working on some changes) and the server implementation is in progress (trying to get better with CGI scripts). ...

July 1, 2025 · 8 min · Mankirat Singh

ABI Compliance Reporting for PostgreSQL - The Plan - Part 2

If you have not read the part 1 of this blog, consider reading that to get some context where I will be starting this one from :D How PostgreSQL build farm will be used for this tool? The Implementation for this project will be divided in 3 major parts 1) Deciding the ABI Compliance checking tool As per this thread, for ABI compliance checking, abi-compliance-checker is a great choice which can also give its reports in HTML format, which makes it a very great fit for the project. But the abi-compliance-checker appears to be deprecated and unsupported upstream. So, I had to do some research into alternatives to that which can support multiple compilers and is actively maintained. ...

May 15, 2025 · 6 min · Mankirat Singh

ABI Compliance Reporting for PostgreSQL - The Plan - Part 1

Who am I? I am Mankirat Singh, a 3rd Year Computer Engineering undergrad from India, passionate about building any piece of tech. This year, I will work with PostgreSQL to develop an ABI Compliance reporting system for the official PostgreSQL Repository under the Google Summer of Code 2025 Program. What is ABI and ABI Compliance Checking? ABI? ABI stands for Application Binary Interface. It is a set of rules and conventions that define how compiled code interacts with other compiled code at the binary level; This includes details about data types, function calling conventions, and binary formats. ...

May 12, 2025 · 4 min · Mankirat Singh