Skip to content

Commit

Permalink
Merge pull request #15 from kachick/aarch64-darwin
Browse files Browse the repository at this point in the history
feat: support aarch64 on darwin
  • Loading branch information
aschiavon91 committed Feb 26, 2024
2 parents 98babb2 + 7aa34a0 commit e60e04a
Show file tree
Hide file tree
Showing 2 changed files with 7 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 @@ -13,11 +13,16 @@ jobs:
matrix:
os:
- ubuntu-latest
- macos-latest
- macos-14 # M1
- macos-13 # Intel
tool-version:
- 'latest'
# Supporting oldest
- '1.1.0'
exclude:
# typos supported aarch64 darwin since 1.17.1
- os: macos-14
tool-version: '1.1.0'
runs-on: ${{ matrix.os }}
steps:
- name: asdf_plugin_test
Expand Down
1 change: 1 addition & 0 deletions bin/download
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ esac

case "$(uname -m)" in
x86_64*) ARCHITECTURE="x86_64" ;;
aarch64 | arm64) ARCHITECTURE="aarch64" ;;
*) fail "Unsupported architecture" ;;
esac

Expand Down

0 comments on commit e60e04a

Please sign in to comment.