Fix buf install on Linux arm#22
Merged
Merged
Conversation
buf spells the arm architecture differently per OS: Darwin and Windows assets say `arm64`, Linux ones say `aarch64`. The plugin renamed `aarch64 -> arm64` globally, so a Linux arm host asked for the nonexistent `buf-Linux-arm64.tar.gz` and the install 404'd. Scope the rename to macOS and Windows with `[platform.<os>.arch]`, leaving Linux on proto's own `aarch64`. Surfaced by a praxis-core release build on an `ubuntu-24.04-arm` runner, the first Linux arm target to install this plugin. Verified `buf-Linux-aarch64.tar.gz` exists for the pinned 1.71.0 and that install plus checksum verification still succeed on Linux x86_64. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
pylaligand
approved these changes
Jul 25, 2026
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.
buf spells the arm architecture differently per OS: Darwin and Windows assets say
arm64, Linux ones sayaarch64. The plugin renamedaarch64 -> arm64globally, so aLinux arm host asked for the nonexistent
buf-Linux-arm64.tar.gzandproto install404'd. Scope the rename to macOS and Windows with
[platform.<os>.arch], leaving Linuxon proto's own
aarch64.Surfaced by a praxis-core release build on an
ubuntu-24.04-armrunner, the first Linuxarm target to install this plugin. No other pinned plugin is affected — their Linux arm
asset names all resolve.
Verified
buf-Linux-aarch64.tar.gzexists for the pinned 1.71.0, and that install,checksum verification, and
proto bin bufstill succeed on Linux x86_64.🤖 Generated with Claude Code