diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8424025..90338a0 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}} @@ -40,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' }}