feat: Add ARM64 builds and universal installation script#46
Merged
Conversation
- Add ARM64 builds for all platforms (Windows, Linux, macOS) in release workflow - Create universal installation script (install.sh) with automatic platform detection - Implement smart fallback from ARM64 to x64 when ARM64 builds unavailable - Add checksum verification for secure downloads - Support both user and system-wide installation modes - Update README.md with new installation methods and ARM64 support documentation - Maintain backward compatibility with existing x64 builds Fixes #45
Signed-off-by: jbrinkman <joe.brinkman@improving.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.
🚀 Implementation of GitHub Issue #45
This PR implements a comprehensive solution for ARM64 platform support and provides a universal installation method for DotNetApiDiff.
✨ Key Features
🏗️ Enhanced Release Pipeline
📦 Universal Installation Script (
install.sh)~/.local/bin) - default/usr/local/bin) - with--systemflag--prefixoption📚 Updated Documentation
🎯 Usage Examples
🔧 Technical Details
Release Assets (New Naming Convention)
dotnet-api-diff-win-x64.zip/dotnet-api-diff-win-arm64.zipdotnet-api-diff-linux-x64.tar.gz/dotnet-api-diff-linux-arm64.tar.gzdotnet-api-diff-osx-x64.tar.gz/dotnet-api-diff-osx-arm64.tar.gzInstallation Script Features
🧪 Testing
--versioncommand🎁 Benefits
📋 Files Changed
.github/workflows/release.yml- Added ARM64 builds to release pipelineinstall.sh- New universal installation scriptREADME.md- Updated installation documentation🔄 Deployment Impact
🎯 Closes
Fixes #45 - Create universal installation script for Linux and macOS
This implementation provides a complete solution for ARM64 support while maintaining excellent backward compatibility and user experience. The universal installer makes DotNetApiDiff accessible to users who prefer not to use package managers or need specific versions not yet available in package repositories.