From 3dbbf837c582831eedc2d3f0536124faced4beff Mon Sep 17 00:00:00 2001 From: Philip Sampaio Date: Sat, 20 May 2023 16:20:31 -0300 Subject: [PATCH] Try to build for Linux on ARM64 --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c83ad3f..1f6d4ca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,6 +19,8 @@ jobs: job: - { target: arm-unknown-linux-gnueabihf , os: ubuntu-20.04 , use-cross: true } - { target: aarch64-unknown-linux-gnu , os: ubuntu-20.04 , use-cross: true } + - { target: aarch64-unknown-linux-musl , os: ubuntu-20.04 , use-cross: true } + - { target: aarch64-unknown-linux-gnu , os: ubuntu-20.04 , use-cross: true } - { target: aarch64-apple-darwin , os: macos-11 } - { target: x86_64-apple-darwin , os: macos-11 } - { target: x86_64-unknown-linux-gnu , os: ubuntu-20.04 }