Conversation
Contributor
There was a problem hiding this comment.
🤖 AI Review
The build define is present in both compiled CLI build paths. The only finding is a comment that conflicts with the trusted repository comment policy; no functional defect was identified.
Findings
| Severity | Location | Category | Sources | Claim |
|---|---|---|---|---|
| ⚪ NIT | apps/cli/scripts/build-binary.ts:33 |
comments |
codex | The comment describes a cross-file match and issue provenance without explaining why this build path needs the define. |
Stats
Claude findings: 0 · Codex findings: 1 · Confirmed: 1 · Refuted: 0 · Uncertain: 0
Models: claude-opus-5-5 + gpt-6-sol · Trigger: auto · Workflow run
This review runs once per PR. A maintainer can request another with a /ai-review comment.
avallete
approved these changes
Sep 24, 2026
avallete
approved these changes
Sep 24, 2026
avallete
deleted the
7ttp/cli-2485-21180-beta72-darwin-arm64-supabase-version-blocks-forever-in
branch
September 24, 2026 13:39
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TL;DR
stops every cli command on macos from waiting on the automounter before it prints anything.
whats broken?
since #6506 every command loads the stack code at startup,
and msgpackr inside it probes for its native addon at the linux build runner's store path baked into the binary
on macos that
/home/runnerpath goes through the automounter on every run, and when the lookup stalls every invocation blocks inopen(2)now fixed by:
setting msgpackr's own
MSGPACKR_NATIVE_ACCELERATION_DISABLEDswitch at build time for the release and
build:binarybinaries. the addon never ships in the binary, so msgpackr keeps its js path like it already did wherever that path is missing, and it no longer loads an addon from that path when one exists..ref:
supabase --versionblocks forever in open(2), and one stuck process blocks every later invocation #6771