Skip to content

Commit

Permalink
Add Apple Silicon Support (#648)
Browse files Browse the repository at this point in the history
Adds support for ARM on macOS via Rosetta. Which began with release
0.2.20
  • Loading branch information
xTVaser authored Jan 5, 2025
1 parent 6042f64 commit bfbd41c
Show file tree
Hide file tree
Showing 13 changed files with 206 additions and 9,292 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-20.04, windows-latest, macos-13]
platform: [ubuntu-20.04, windows-latest, macos-13, macos-15]
runs-on: ${{ matrix.platform }}

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-20.04, windows-latest, macos-13]
platform: [ubuntu-20.04, windows-latest, macos-13, macos-15]
runs-on: ${{ matrix.platform }}
steps:
# NOTE - there is technically a race condition here if multiple releases go out
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_ID: ${{needs.create-release.outputs.release_id}}
EXPECTED_ASSET_NAME_REGEXES: '[".*AppImage", ".*AppImage.tar.gz", ".*AppImage.tar.gz.sig", ".*msi", ".*msi.zip", ".*msi.zip.sig", ".*dmg", ".*app", ".*app.tar.gz", ".*app.tar.gz.sig", "latest.json"]'
EXPECTED_ASSET_NAME_REGEXES: '[".*AppImage", ".*AppImage.tar.gz", ".*AppImage.tar.gz.sig", ".*msi", ".*msi.zip", ".*msi.zip.sig", ".*_aarch64.dmg", ".*_x64.dmg", ".*app", ".*app.tar.gz", ".*app.tar.gz.sig", "latest.json"]'
run: yarn verify-release-assets

publish-release:
Expand Down
Loading

0 comments on commit bfbd41c

Please sign in to comment.