Systems | Development | Analytics | API | Testing

Lifting the hood on Build Cache for Xcode

With Xcode 26, Apple has finally introduced Xcode Compilation Caching: a major leap forward for iOS developers, who no longer have to wait around for slow builds while their CI pipelines recompile code that hasn’t changed. At Bitrise, our Build Cache product already supports Bazel and Gradle, so the logical next step was to introduce support for compilation caching in Xcode. In this blog post, we’re lifting the hood on how we built this new feature.

Cloud-first, AI-Powered test automation in SAP Cloud ALM

SmartBear participated in and won first prize at the ALMathon, the annual hackathon for SAP Partners. The challenge: Create innovative use cases to extend SAP Cloud ALM. So, we integrated Reflect, our AI-powered test automation product, into SAP Cloud ALM to enable users to automate their manual testing process.

Accelerate Automotive Infotainment Software Development

Automotive infotainment systems are a core component of the modern driving experience. As these systems expand in features and complexity, the challenges for the software design teams behind them also increase. For automotive leaders, designers, and technicians, staying ahead means.

Sanity Checklist For Load Testing And Performance Validation

Did you know that almost 80% of failures in performance testing are related to missing basic pre-validation steps before performance testing is done? In the race to meet release dates, many development teams jump into performance testing without knowing that the system is ready for performance testing. The consequences of performance test preparation include inaccurate metrics, wasted infrastructure costs, and inaccurate conclusions relayed around an application’s ability to scale.

WSO2 Identity Server 7.2: Open-Source IAM to Secure AI Agents and MCP servers

AI adoption is accelerating across every industry, from customer service and marketing to finance and retail, and we’re still far from its peak. Many organizations have already begun integrating AI agents into their business operations. A key aspect of this transformation is the use of AI agents, whether purpose-built or off-the-shelf, to assist with or even replace tasks traditionally handled by humans.

SAP Automation Tool Added to SAP Marketplace

If you manage SAP data, you recognize this pattern: Business users need to update records daily (pricing changes, purchase orders, customer information), but they lack SAP expertise. And IT teams are overwhelmed with data entry requests. If you stick with manual processes, you face errors and delays. You need an SAP automation tool that meets you where you are without a huge learning curve.

Debugging a running PHP process by attaching GDB

We are noticing that some of our requests are starting to get slow and server load increases. Checking the process list of our server, for example with htop reveals that our FPM workers are taking up all of our CPU time. Checking the health with our basic toolset of lsof to show open network connections and strace to show syscalls does not reveal any activity. This means that the workers are spending time processing data without any externally visible activity.