Win aarch64 bundle

This commit is contained in:
Pierre Jacquier
2024-07-12 07:55:22 -04:00
parent c7c747a109
commit e376e397db
3 changed files with 1398 additions and 92 deletions

View File

@ -348,13 +348,13 @@ jobs:
- name: Build the app (debug) for aarch64
if: ${{ env.BUILD_RELEASE == 'false' }}
# .msi bundles aren't supported by tauri on aarch64
run: yarn run tauri build --debug --target aarch64-pc-windows-msvc --no-bundle
run: yarn run tauri build --debug --target aarch64-pc-windows-msvc -b msi
- uses: actions/upload-artifact@v3
if: ${{ env.BUILD_RELEASE == 'false' }}
with:
name: artifact-aarch64-windows
path: src-tauri/target/aarch64-pc-windows-msvc/*/*
path: "src-tauri/target/aarch64-pc-windows-msvc/debug/bundle/*/*"
- name: Run e2e tests
if: ${{ github.event_name != 'release' && github.event_name != 'schedule' }}

1485
src-tauri/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -12,6 +12,7 @@ rust-version = "1.70"
[build-dependencies]
tauri-build = { version = "2.0.0-beta.18", features = [] }
tauri-bundler = { git = "https://github.com/tauri-apps/tauri", rev = "1a88fc1a9b81bd09fc24cf0dfed95d20dd72a1bb" }
[dependencies]
anyhow = "1"