From fb3c40d477b54fdc4f64a9740d12ae004d59b00e Mon Sep 17 00:00:00 2001 From: dmunozv04 <39565245+dmunozv04@users.noreply.github.com> Date: Sun, 18 Aug 2024 15:58:15 +0200 Subject: [PATCH] also build armv7 --- .github/workflows/release.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 86b249f..753391d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,24 +70,22 @@ jobs: os: ubuntu-latest cross: true release_suffix: x86_64-linux - # - target: x86_64-unknown-linux-musl - # os: ubuntu-latest - # cross: true - target: aarch64-unknown-linux-gnu os: ubuntu-latest cross: true release_suffix: aarch64-linux - # - target: i686-unknown-linux-gnu - # os: ubuntu-latest - # cross: true - # release_suffix: i686-linux + - target: armv7-unknown-linux-gnueabihf + os: ubuntu-latest + cross: true + release_suffix: armv7-linux # Windows - target: x86_64-pc-windows-msvc os: windows-2022 release_suffix: x86_64-windows - # - target: i686-pc-windows-msvc - # os: windows-2022 - # release_suffix: i686-windows + - target: aarch64-pc-windows-msvc + os: windows-2022 + cross: true + release_suffix: aarch64-windows # macOS - target: aarch64-apple-darwin os: macos-14