Skip to content

Commit

Permalink
fix: change rust targets for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
francis2tm committed Feb 9, 2024
1 parent cad2d2f commit 4084aa1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,12 @@ jobs:
with:
components: rustfmt

- name: "Add rust target"
- name: "Add rust target (macOS)"
if: matrix.runner == 'macos-latest'
run: rustup target add aarch64-apple-darwin

- name: "Add rust target (Other)"
if: matrix.runner != 'macos-latest'
run: rustup target add ${{ matrix.target }}

- name: Install GUI frontend dependencies
Expand Down

0 comments on commit 4084aa1

Please sign in to comment.