From 77267b491e0100f288141e928c4be1e98f9a4e2b Mon Sep 17 00:00:00 2001 From: Hrishikesh Kokate Date: Wed, 23 Oct 2024 18:13:25 +0530 Subject: [PATCH 1/2] Support Linux ARM64 Attempting to add Linux ARM64 support, similar to: https://github.com/mike-engel/jwt-cli/pull/351/ --- .github/workflows/cd.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index f71ba32..3a81854 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -28,6 +28,11 @@ jobs: target: x86_64-unknown-linux-musl binary_postfix: "" label: x86_64 musl + - os: ubuntu-latest + artifact_prefix: linux-arm64 + target: aarch64-unknown-linux-gnu + binary_postfix: "" + label: ARM64 - os: windows-latest artifact_prefix: windows target: x86_64-pc-windows-msvc From 66b69dc09aee4276dc7f5ecc92ee4283b0001413 Mon Sep 17 00:00:00 2001 From: Hrishikesh Kokate Date: Thu, 24 Oct 2024 12:36:09 +0530 Subject: [PATCH 2/2] add linux-arm64-musl --- .github/workflows/cd.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 3a81854..691fd08 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -32,7 +32,12 @@ jobs: artifact_prefix: linux-arm64 target: aarch64-unknown-linux-gnu binary_postfix: "" - label: ARM64 + label: arm64 + - os: ubuntu-latest + artifact_prefix: linux-arm64-musl + target: aarch64-unknown-linux-musl + binary_postfix: "" + label: arm64 musl - os: windows-latest artifact_prefix: windows target: x86_64-pc-windows-msvc