From 45b3c8036a9ea713014229ae8baa157dc463f64d Mon Sep 17 00:00:00 2001 From: xgdgsc Date: Sun, 14 May 2023 11:01:01 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=94=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8424025..aa14648 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,6 +17,9 @@ jobs: - aarch64-apple-darwin - x86_64-apple-darwin - x86_64-unknown-linux-musl + - aarch64-unknown-linux-musl + - x86_64-pc-windows-gnu + - x86_64-pc-windows-msvc include: - target: aarch64-apple-darwin os: macos-latest @@ -27,6 +30,17 @@ jobs: - target: x86_64-unknown-linux-musl os: ubuntu-latest target_rustflags: '' + - target: aarch64-unknown-linux-musl + os: ubuntu-latest + target_rustflags: '' + - target: x86_64-pc-windows-gnu + os: windows-latest + target_rustflags: '' + ext: .exe + - target: x86_64-pc-windows-msvc + os: windows-latest + target_rustflags: '' + ext: .exe runs-on: ${{matrix.os}} From d09dc040682340a26ae56125a980143767726dc2 Mon Sep 17 00:00:00 2001 From: xgdgsc Date: Sun, 20 Aug 2023 21:18:44 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=94=A5=20aarch64-unknown-linux-musl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aa14648..90338a0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: - aarch64-apple-darwin - x86_64-apple-darwin - x86_64-unknown-linux-musl - - aarch64-unknown-linux-musl + # - aarch64-unknown-linux-musl - x86_64-pc-windows-gnu - x86_64-pc-windows-msvc include: @@ -30,9 +30,9 @@ jobs: - target: x86_64-unknown-linux-musl os: ubuntu-latest target_rustflags: '' - - target: aarch64-unknown-linux-musl - os: ubuntu-latest - target_rustflags: '' + # - target: aarch64-unknown-linux-musl + # os: ubuntu-latest + # target_rustflags: '' - target: x86_64-pc-windows-gnu os: windows-latest target_rustflags: '' @@ -54,11 +54,11 @@ jobs: target: ${{ matrix.target }} toolchain: stable - - name: Install AArch64 Toolchain - if: ${{ matrix.target == 'aarch64-unknown-linux-musl' }} - run: | - sudo apt-get update - sudo apt-get install gcc-aarch64-linux-gnu + # - name: Install AArch64 Toolchain + # if: ${{ matrix.target == 'aarch64-unknown-linux-musl' }} + # run: | + # sudo apt-get update + # sudo apt-get install gcc-aarch64-linux-gnu - name: Install ARM7 Toolchain if: ${{ matrix.target == 'armv7-unknown-linux-musleabihf' }}