跪拜 Guibai
← All articles
Frontend

AI Builds Surge 161×, but Mobile CI Pipelines Aren't Crashing

By JarvanMo ·
Read original on juejin.cn ↗ Google Translate ↗ Alt translation

The fear that AI-generated code would destabilize CI pipelines is contradicted by 19 million builds of real-world data. The bottleneck is not AI code quality but whether a team has invested in modern build infrastructure, caching, and automated test reporting.

Summary

AI-generated code now accounts for a rapidly growing share of mobile CI traffic, with Claude driving 67% of all AI-tagged builds. Despite the volume spike, overall pipeline failure rates remained flat at roughly one in six. AI builds actually fail slightly less often and finish about 9% faster than human-only builds, a pattern that holds even within the same workspace.

Infrastructure quality, not AI adoption depth, is the real performance divider. Teams that combine M4 hardware, caching, test reporting, and observability achieve fast, reliable pipelines; teams running old machines without these basics see long queues and high failure rates regardless of how much AI code they push. Automated test reruns grew 5×, and single-test failure rates halved while test volume rose 78%, absorbing the extra load.

iOS build times dropped below Android for the first time after Bitrise's fleet moved from M1 to M4 silicon. Every industry tracked now runs AI builds, from travel (36% workspace penetration) to insurance (13%), though regulated sectors move more cautiously.

Takeaways
AI-tagged builds grew 161× between Q1 2025 and Q1 2026 on Bitrise's platform.
Claude accounts for 67% of AI build volume; Copilot appears in more workspaces but generates fewer builds per workspace.
AI build failure rate is 16.3%, lower than the 17.4% rate for non-AI builds, and AI builds finish about 9% faster.
Overall pipeline failure rates stayed flat at ~17.4% despite a 20% increase in total build volume.
Automated test reruns grew 5×, single-test failure rates halved, and test volume rose 78% year-over-year.
iOS build times fell below Android for the first time after Bitrise switched its fleet from M1 to M4 machines.
80.6% of high-build-volume teams use caching, test reports, and observability together; only 6.6% of low-usage teams do.
Every one of the 17 tracked industries now runs AI builds, with travel leading at 36% workspace penetration.
Xcode major-version upgrades can spike build failure rates by up to 16 percentage points in the following weeks.
Conclusions

The 161× growth figure undercounts real AI code volume because it misses developers who paste AI-generated code and commit under their own name without bot markers.

Lower AI build failure rates may reflect selection bias: AI tools are used more in mature workspaces with better pipelines, and agents likely perform local verification before pushing.

Infrastructure investment (M4 silicon, caching, test reporting) explains more variance in pipeline health than any AI adoption metric, making it the higher-leverage engineering decision.

Automation absorbed the AI code flood, not human vigilance—test reruns and reporting scaled up silently while failure rates held steady.

Regulated industries like insurance are not opting out of AI; they are adopting it more slowly, which suggests compliance friction rather than outright resistance.

Concepts & terms
CI/CD pipeline
A Continuous Integration/Continuous Delivery pipeline automates building, testing, and deploying code. Every commit triggers a series of steps that compile the app, run tests, and report results.
P90 slow tail
The 90th percentile of build durations—the time within which 90% of builds complete. A shorter P90 means fewer builds experience extreme wait times.
Flaky test
A test that passes and fails intermittently without code changes, often due to timing issues or environmental instability. Automated rerun features help identify and quarantine them.
Gradle Build Cache
A caching mechanism for Android's Gradle build system that reuses outputs from previous builds, avoiding redundant work and reducing build times.
Source: juejin.cn ↗ Google Translate ↗ Backup ↗