You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Windows ARM64 packaging support to the existing PR and release workflows.
This depends on the Windows ARM64 libmpv support added in Predidit/media-kit#34, and updates Kazumi's media-kit pin to the merged upstream commit.
Changes
Split the existing Windows build job into windows-amd64 naming.
Add a Windows ARM64 PR build job on windows-11-arm.
Add Windows ARM64 release packaging for zip and MSIX.
Publish Windows artifacts with explicit architecture suffixes:
Kazumi_windows_<version>_amd64.zip
Kazumi_windows_<version>_arm64.zip
Kazumi_windows_<version>_amd64.msix
Kazumi_windows_<version>_arm64.msix
Update media-kit dependencies to Predidit/media-kit@11d02cb804b8faf944137834a1b0ac80880a4079.
Notes
The Windows ARM64 job sets up Flutter by cloning the pubspec-pinned Flutter SDK directly. subosito/flutter-action resolves SDK archives by runner architecture, while the pinned Windows Flutter release currently only publishes an x64 archive. This also avoids depending on jq / yq availability on windows-11-arm.
The release workflow reuses the existing SignPath configuration for Windows zip and MSIX signing. No new secrets are introduced.
Validation
Ran flutter pub get with the updated media-kit pin.
Checked the workflow diff against the existing Windows and Linux packaging jobs.
The ARM64 build/release jobs faithfully mirror the existing amd64 jobs, artifact names are unique per architecture, the workflow-level env: block supplies the required secrets to all jobs, and the Flutter-version regex resolves correctly from environment.flutter in pubspec.yaml. The media-kit pin bump is applied consistently across pubspec.yaml and pubspec.lock.
Note (out of review scope — verify at runtime):dart run msix:create --architecture arm64 is assumed to support the --architecture flag (msix ^3.16.12) and to emit kazumi.msix under build/windows/arm64/runner/Release. This depends on third-party tool behavior that can't be statically verified.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add Windows ARM64 packaging support to the existing PR and release workflows.
This depends on the Windows ARM64 libmpv support added in Predidit/media-kit#34, and updates Kazumi's media-kit pin to the merged upstream commit.
Changes
windows-amd64naming.windows-11-arm.Kazumi_windows_<version>_amd64.zipKazumi_windows_<version>_arm64.zipKazumi_windows_<version>_amd64.msixKazumi_windows_<version>_arm64.msixPredidit/media-kit@11d02cb804b8faf944137834a1b0ac80880a4079.Notes
The Windows ARM64 job sets up Flutter by cloning the pubspec-pinned Flutter SDK directly.
subosito/flutter-actionresolves SDK archives by runner architecture, while the pinned Windows Flutter release currently only publishes an x64 archive. This also avoids depending onjq/yqavailability onwindows-11-arm.The release workflow reuses the existing SignPath configuration for Windows zip and MSIX signing. No new secrets are introduced.
Validation
flutter pub getwith the updated media-kit pin.