fix(build): 🐛 添加不同编译版本,以修复不同架构安装出错问题

This commit is contained in:
nongyehong
2024-10-29 12:59:07 +08:00
parent 9339ecc11b
commit 19fb138d51
15 changed files with 56 additions and 18 deletions

View File

@@ -15,9 +15,17 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, windows-latest]
include:
- os: windows-latest
target: x86_64-pc-windows-msvc
- os: windows-latest
target: aarch64-pc-windows-msvc
- os: macos-latest
target: aarch64-apple-darwin
- os: macos-latest
target: x86_64-apple-darwin
runs-on: ${{ matrix.platform }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4