From 8aeb5fb80739300720ee4986f449323e0d9e0658 Mon Sep 17 00:00:00 2001 From: Dmitry Mazurin Date: Mon, 25 Sep 2023 12:21:01 +0100 Subject: [PATCH] Add aarch64-unknown-linux-gnu target --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d4378e2..3954419 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,6 +25,10 @@ jobs: os: ubuntu-22.04 target: x86_64-unknown-linux-musl + - build: linux + os: ubuntu-22.04 + target: aarch64-unknown-linux-gnu + - build: linux os: ubuntu-20.04 ## older ubuntu to avoid messing with glibc version target: arm-unknown-linux-gnueabihf @@ -54,7 +58,7 @@ jobs: if: matrix.build == 'linux' run: | sudo apt update - sudo apt install libsqlite3-dev gcc-arm-linux-gnueabihf musl-tools -qy + sudo apt install libsqlite3-dev gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu musl-tools -qy - name: install packages (macos) if: matrix.build == 'macos'