This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch linux-arm64 in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git
commit bbfe1db7c432b085257fce4f87cecd6e20bb88bf Author: Per Abich <[email protected]> AuthorDate: Thu Mar 13 13:13:19 2025 +0100 Add support for Linux ARM64 in Homebrew and SDKMAN! publishing scripts --- build/publish-on-homebrew.sh | 4 ++++ build/publish-on-sdkman.sh | 1 + 2 files changed, 5 insertions(+) diff --git a/build/publish-on-homebrew.sh b/build/publish-on-homebrew.sh index 154cee06..6943cea8 100755 --- a/build/publish-on-homebrew.sh +++ b/build/publish-on-homebrew.sh @@ -34,6 +34,8 @@ darwinArmZipUrl="https://downloads.apache.org/maven/mvnd/${VERSION}/maven-mvnd-$ darwinArmSha256="$(curl -L --silent "${darwinArmZipUrl}.sha256")" linuxZipUrl="https://downloads.apache.org/maven/mvnd/${VERSION}/maven-mvnd-${VERSION}-linux-amd64.zip" linuxSha256="$(curl -L --silent "${linuxZipUrl}.sha256")" +linuxArmZipUrl="https://downloads.apache.org/maven/mvnd/${VERSION}/maven-mvnd-${VERSION}-linux-aarch64.zip" +linuxArmSha256="$(curl -L --silent "${linuxArmZipUrl}.sha256")" echo "Updating Formula/mvnd.rb with" echo "version: ${VERSION}" @@ -43,6 +45,8 @@ echo "darwin-arm-url: ${darwinArmZipUrl}" echo "darwin-arm-sha256: ${darwinArmSha256}" echo "linux-url: ${linuxZipUrl}" echo "linux-sha256: ${linuxSha256}" +echo "linux-arm-url: ${linuxArmZipUrl}" +echo "linux-arm-sha256: ${linuxArmSha256}" rm -Rf homebrew-mvnd git clone https://github.com/mvndaemon/homebrew-mvnd.git diff --git a/build/publish-on-sdkman.sh b/build/publish-on-sdkman.sh index 32292fa0..271a9f45 100755 --- a/build/publish-on-sdkman.sh +++ b/build/publish-on-sdkman.sh @@ -59,6 +59,7 @@ function publishRelease() { } publishRelease ${VERSION} LINUX_64 linux-amd64 +publishRelease ${VERSION} LINUX_ARM64 linux-aarch64 publishRelease ${VERSION} MAC_OSX darwin-amd64 publishRelease ${VERSION} MAC_ARM64 darwin-aarch64 publishRelease ${VERSION} WINDOWS_64 windows-amd64
