Skip to content

Commit

Permalink
github: action: Test fix mac
Browse files Browse the repository at this point in the history
  • Loading branch information
RaulTrombin committed Sep 11, 2024
1 parent d5f21fe commit 6b066f4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ jobs:
fail-fast: false
matrix:
include:
- platform: 'macos-latest' # for Arm based macs (M1 and above).
- platform: 'macos-13' # for Arm based macs (M1 and above).
args: '--target aarch64-apple-darwin'
- platform: 'macos-latest' # for Intel based macs.
- platform: 'macos-13' # for Intel based macs.
args: '--target x86_64-apple-darwin'
- platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04.
args: ''
Expand All @@ -127,6 +127,11 @@ jobs:
# webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2.
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.

- name: install dependencies (mac aarch only)
if: matrix.platform == 'macos-13' # This must match the platform value defined above.
run: |
rustup target add aarch64-apple-darwin
- name: setup node
uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit 6b066f4

Please sign in to comment.