Add prebuilt bundled bindings for all platforms + Intel runner fix#45
Merged
Conversation
GitHub's macos-15 (and macos-14) runners are Apple Silicon, so the macos-intel matrix leg produced macos-arm bindings and never the macos-intel artifact, skipping the open-pr job. Use macos-13 (the last Intel runner) for the macos-intel target in the generate-bindings, lean, and drift jobs, and pin the generated bindings PR base to main so it can be dispatched from any branch. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
macos-13 has been retired as a GitHub-hosted runner label, so the macos-intel leg sat queued indefinitely. Use the current Intel label macos-15-intel for the generate-bindings, lean, and drift jobs. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
… in PR Adds the per-platform prebuilt bindings (linux, linux-arm, macos-arm, macos-intel, windows) generated on the CI runners. The macos-arm bindings are refreshed to match the runner output so the drift check passes. Also restricts the generate-bindings PR to src/bindings/*.rs via add-paths so the downloaded artifacts/ directory is never committed. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Completes the prebuilt-bundled-bindings work by committing the per-platform bindings generated on CI, plus the runner fixes needed to produce them.
Contents
src/bindings/{linux,linux-arm,macos-arm,macos-intel,windows}.rs), generated on the GitHub runners.macos-armis refreshed to match runner output (it differed from the locally-generated copy, which would have failed the drift check).macos-13was retired as a GitHub-hosted label, so the Intel leg sat queued forever. Switched tomacos-15-intelin the generate / lean / drift jobs.mainandadd-paths: src/bindings/*.rsso the generate-bindings workflow targets main and never commits the downloadedartifacts/directory.Once merged, the lean path (
--no-default-features --features bundled) works on every supported platform with no bindgen/libclang, and the drift-check job guards the bindings against the pinned SCIP release.🤖 Generated with Claude Code