feat: support Windows ARM64 (#558)

This commit is contained in:
sxyazi 2024-01-22 13:57:36 +08:00
parent 701c08ce1e
commit e1d7f79191
No known key found for this signature in database

View File

@ -17,12 +17,14 @@ jobs:
target: x86_64-unknown-linux-gnu
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
- os: windows-latest
target: x86_64-pc-windows-msvc
- os: macos-latest
target: x86_64-apple-darwin
- os: macos-latest
target: aarch64-apple-darwin
- os: windows-latest
target: x86_64-pc-windows-msvc
- os: windows-latest
target: aarch64-pc-windows-msvc
runs-on: ${{ matrix.os }}
@ -33,7 +35,7 @@ jobs:
run: rustup toolchain install stable --profile minimal
- name: Add aarch64 target
if: contains(fromJson('["aarch64-unknown-linux-gnu", "aarch64-apple-darwin"]'), matrix.target)
if: contains(fromJson('["aarch64-unknown-linux-gnu", "aarch64-apple-darwin", "aarch64-pc-windows-msvc"]'), matrix.target)
run: rustup target add ${{ matrix.target }}
- name: Install gcc-aarch64-linux-gnu