Skip to content

Commit

Permalink
Merge pull request #2287 from zerotier:actions
Browse files Browse the repository at this point in the history
Fix macOS GitHub Action
  • Loading branch information
glimberg committed May 9, 2024
2 parents 0fb9d43 + 28cf142 commit ddb2759
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Expand Up @@ -43,13 +43,20 @@ jobs:
# git config --global core.eol lf
- name: checkout
uses: actions/checkout@v3
- name: Install Rust
- name: Install Rust aarch64
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: aarch64-apple-darwin
override: true
components: rustfmt, clippy
- name: Install Rust x86_64
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: x86_64-apple-darwin
override: true
components: rustfmt, clippy
- name: Set up cargo cache
uses: Swatinem/rust-cache@v2
continue-on-error: false
Expand Down

0 comments on commit ddb2759

Please sign in to comment.