Skip to content

Add windows arm support #841

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 3 commits into
base: develop
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 40 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,17 @@ jobs:
name: apk-x86_64-build
path: app/linwood-butterfly-android-x86_64.apk
build-windows:
runs-on: windows-2025
strategy:
fail-fast: false
matrix:
arch:
- image: windows-2025
name: x86_64
dir: x64
- image: windows-11-arm
name: arm64
dir: arm64
runs-on: ${{ matrix.arch.image }}
defaults:
run:
working-directory: app
Expand All @@ -101,7 +111,10 @@ jobs:
choco install innosetup
- uses: subosito/[email protected]
with:
flutter-version-file: app/pubspec.yaml
channel: "master"
cache: true
cache-key: "flutter-:os:-:channel:-:version:-:arch:-:hash:"
cache-path: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:"
- name: ✅ Enable platforms
run: flutter config --enable-windows-desktop
- name: 📦 Get dependencies
Expand All @@ -124,23 +137,22 @@ jobs:
run: |
Get-Content pubspec.yaml | Select-String -Pattern 'version:\s(.+)\+' | % {Set-Item -Path Env:BUTTERFLY_VERSION -Value "$($_.matches.groups[1])"}
& 'C:/Program Files (x86)/Inno Setup 6/ISCC.exe' /DMyAppVersion=$Env:BUTTERFLY_VERSION ButterflySetup.iss
# flutter pub run msix:create
- name: Copy portable start script
run: |
cp scripts/start.bat build/windows/x64/runner/Release/
cp build/windows/x64/linwood-butterfly-windows-setup.exe linwood-butterfly-windows-setup-x86_64.exe
cp scripts/start.bat build/windows/${{ matrix.arch.dir }}/runner/Release/
cp build/windows/${{ matrix.arch.dir }}/linwood-butterfly-windows-setup.exe linwood-butterfly-windows-setup-${{ matrix.arch.name }}.exe
- name: Archive
uses: actions/upload-artifact@v4
with:
name: windows-build
name: windows-${{ matrix.arch.name }}-build
path: |
app/build/windows/x64/runner/Release/**
app/build/windows/${{ matrix.arch.dir }}/runner/Release/**
- name: Archive
uses: actions/upload-artifact@v4
with:
name: windows-setup
name: windows-${{ matrix.arch.name }}-setup
path: |
app/linwood-butterfly-windows-setup-x86_64.exe
app/linwood-butterfly-windows-setup-${{ matrix.arch.name }}.exe
build-linux:
strategy:
fail-fast: false
Expand Down Expand Up @@ -560,8 +572,12 @@ jobs:
name: apk-x86_64-build
- uses: actions/download-artifact@v4
with:
name: windows-build
path: windows-build/
name: windows-arm64-build
path: windows-arm64-build/
- uses: actions/download-artifact@v4
with:
name: windows-x86_64-build
path: windows-x86_64-build/
- uses: actions/download-artifact@v4
with:
name: linux-x86_64-build
Expand Down Expand Up @@ -595,7 +611,10 @@ jobs:
path: linux-arm64-alternative-build/
- uses: actions/download-artifact@v4
with:
name: windows-setup
name: windows-x86_64-setup
- uses: actions/download-artifact@v4
with:
name: windows-arm64-setup
- uses: actions/download-artifact@v4
with:
name: macos-build
Expand All @@ -607,8 +626,10 @@ jobs:
name: ipa-build
- name: 📦 Zip artifacts
run: |
cd windows-build
cd windows-x86_64-build
zip -r ../linwood-butterfly-windows-x86_64.zip *
cd windows-arm64-build
zip -r ../linwood-butterfly-windows-arm64.zip *
cd ..
tar -C linux-x86_64-build -czf linwood-butterfly-linux-x86_64.tar.gz .
tar -C linux-arm64-build -czf linwood-butterfly-linux-arm64.tar.gz .
Expand Down Expand Up @@ -648,6 +669,8 @@ jobs:
files: |
linwood-butterfly-windows-setup-x86_64.exe
linwood-butterfly-windows-x86_64.zip
linwood-butterfly-windows-setup-arm64.exe
linwood-butterfly-windows-arm64.zip
linwood-butterfly-linux-x86_64.tar.gz
linwood-butterfly-linux-alternative-x86_64.tar.gz
linwood-butterfly-linux-x86_64.deb
Expand Down Expand Up @@ -677,6 +700,8 @@ jobs:
files: |
linwood-butterfly-windows-setup-x86_64.exe
linwood-butterfly-windows-x86_64.zip
linwood-butterfly-windows-setup-arm64.exe
linwood-butterfly-windows-arm64.zip
linwood-butterfly-linux-x86_64.tar.gz
linwood-butterfly-linux-alternative-x86_64.tar.gz
linwood-butterfly-linux-x86_64.deb
Expand Down Expand Up @@ -704,6 +729,8 @@ jobs:
files: |
linwood-butterfly-windows-setup-x86_64.exe
linwood-butterfly-windows-x86_64.zip
linwood-butterfly-windows-setup-arm64.exe
linwood-butterfly-windows-arm64.zip
linwood-butterfly-linux-x86_64.tar.gz
linwood-butterfly-linux-alternative-x86_64.tar.gz
linwood-butterfly-linux-x86_64.deb
Expand Down
Loading