Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/infrastructure/ios-build-infrastructure.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,19 @@ Here are some of the most important packages installed in our iOS build runners
| Yarn | 1.22.22 | 1.22.22 | 1.22.22 | 1.22.22 | 1.22.22 |
| Zip | 3.0 | 3.0 | 3.0 | 3.0 | 3.0 |

:::caution Homebrew 6 on the macOS Tahoe `26.5` stack

The upcoming macOS **Tahoe `26.5.1`** stack ships **Homebrew 6.x** (up from `5.1.0` on the Tahoe `26.3.2` stack). Starting with Homebrew `6.0`, `brew` no longer installs formulae from **untrusted third-party taps** until the tap is explicitly trusted. If a [custom script](/workflows/common-workflow-steps/custom-script) step installs from a third-party tap, add a trust step first:

```bash
brew trust <user>/<tap>
brew install <user>/<tap>/<formula>
```

Formulae from the default Homebrew taps are not affected. Node also changes on this stack: the default stays **Node 22**, with **Node 24** available via the [Install Node](/workflows/react-native-specific-workflow-steps/node-install) step.

:::
Comment on lines +132 to +143

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Align the caution heading with the target stack version.

The block title says 26.5, but the surrounding text and tables refer to 26.5.1. Please make the version consistent so readers don’t infer the warning applies to the wrong image.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@docs/infrastructure/ios-build-infrastructure.md` around lines 132 - 143,
Update the caution heading in the iOS build infrastructure docs so it matches
the stack version used in the body text and tables. The issue is the heading
references Tahoe 26.5 while the content refers to 26.5.1; make the version
consistent throughout that caution block so readers can identify the correct
macOS stack.


### Using your own computer for build

Appcircle supports using a third-party computer to perform builds. You can create your own build environment by installing the operating system and other tools and dependencies you need to tell Appcircle to use that environment to perform builds.
Expand Down