From 2a118608f57e10f5e780bb9bac399f3c0a73eb3f Mon Sep 17 00:00:00 2001 From: Kevin Cui Date: Sun, 5 Jul 2026 01:54:51 -0400 Subject: [PATCH] fix(build): bump pinned bun to 1.3.14 to repair macOS signing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CI builds the release binaries with the bun version pinned in `.bun-version`, which was `1.3.13`. That version's `bun build --compile` emits an invalid macOS code signature, so on Apple Silicon the kernel `SIGKILL`s the executable the instant it launches (exit 137) before any CLI code runs. As a result every published macOS binary crashed on startup: `oo --version`, `oo install`, and the `install.sh` bootstrap (which runs `oo install` under `set -e`) all aborted, while `bun run index.ts` stayed fine because dev never produces a compiled, signed binary. bun 1.3.14 fixes the `--compile` binary-layout regression behind the broken signature. Verified by rebuilding the darwin-arm64 artifact with 1.3.14 through the real release script: it runs cleanly, whereas 1.3.13 reproduced the crash on the same machine and flags. A re-publish is still required — this only fixes future builds, not the already-uploaded binaries on the CDN. Signed-off-by: Kevin Cui --- .bun-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bun-version b/.bun-version index 7962dcfd..085c0f26 100644 --- a/.bun-version +++ b/.bun-version @@ -1 +1 @@ -1.3.13 +1.3.14