ci: add macOS (Apple Silicon) sidecar build/test job#1507
Open
abcxff wants to merge 1 commit into
Open
Conversation
|
🚅 Deployed to the agentos-pr-1507 environment in agentos
🚅 Deployed to the agentos-pr-1507 environment in rivet-frontend
|
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.
What
Adds
.github/workflows/macos-build.yml— a stage-0 compile gate for macOS support, running onmacos-14(Apple Silicon /aarch64-apple-darwin).It mirrors
ci.yml's setup (checks out thesecure-execsibling repo, symlinks it to the expected sibling path, builds@secure-exec/core, thenpnpm install && pnpm build) and then runs the real signal:cargo build -p agent-os-sidecar— transitively compiles the secure-exec native stack (kernel / execution / V8 runtime) it linkscargo test -p agent-os-protocolandcargo test -p agent-os-sidecarWhy
There is currently no macOS build or test anywhere in CI. Before investing in per-platform binary packaging and a release matrix, we need a definitive answer to "does the native stack even compile and pass tests on Apple Silicon?". This job provides that signal.
Notes
workflow_dispatchand on pushes/PRs that touchcrates/**,Cargo.*, or this workflow file (macOS runners are expensive).secure-exec(kernel/execution/v8-runtime); this gate exercises it transitively via path deps, butsecure-execlikely wants its own equivalent gate.🤖 Generated with Claude Code