-
Notifications
You must be signed in to change notification settings - Fork 470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feat:] added support for cargo-binstall #1282
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Akash <[email protected]>
…ries Signed-off-by: Akash <[email protected]>
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
# Linux (x86_64) | ||
[[package.targets.linux]] | ||
url = "https://github.com/Schniz/fnm/releases/download/v1.37.2/fnm-linux.zip" | ||
checksum = "sha256:439ccbc11e65df970500833e152b896c107f3f3014ea7aaf42213241b403338c" | ||
|
||
# macOS (x86_64) | ||
[[package.targets.mac]] | ||
url = "https://github.com/Schniz/fnm/releases/download/v1.37.2/fnm-macos.zip" | ||
checksum = "sha256:a886932043e8c1dee457a733e57edc39df2287d9952a96948155df2a0b6b26b1" | ||
|
||
# Windows (x86_64) | ||
[[package.targets.windows]] | ||
url = "https://github.com/Schniz/fnm/releases/download/v1.37.2/fnm-windows.zip" | ||
checksum = "sha256:4f634f9153635e4af26ea96b15c01a28e5e4acc03849a0b51a86be9c70897173" | ||
|
||
# ARM32 | ||
[[package.targets.linux-arm]] | ||
url = "https://github.com/Schniz/fnm/releases/download/v1.37.2/fnm-arm32.zip" | ||
checksum = "sha256:7047833cdfab2287899dcd686d26b84a2398f43b5aa1cf0f370e0826e89fe039" | ||
|
||
# ARM64 | ||
[[package.targets.linux-arm64]] | ||
url = "https://github.com/Schniz/fnm/releases/download/v1.37.2/fnm-arm64.zip" | ||
checksum = "sha256:8db196f4bcbb2f27b4742bd5a898ab79d444006d121f888d9201bb3690419763" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh no, is there a way it'll be automatic
i might need to append this portion upon release
?
that's an exciting change |
This PR updates the CI workflow to:
Consistent Naming Convention: Standardizes the naming of artifacts produced during the build process across different operating systems and architectures. This new naming convention adheres to the format:
fnm-x86_64-pc-windows-msvc.zip
fnm-arm64-pc-windows-msvc.zip
fnm-aarch64-apple-darwin.zip
fnm-x86_64-apple-darwin.zip
fnm-x86_64-unknown-linux-musl.zip
fnm-arm64-unknown-linux-gnueabihf.zip
Added
binstall.toml
file to supportcargo binstall fnm
Related Issue : #1280