Skip to content

Commit

Permalink
ci: add separate wheels build/install for macos arm64 for languages
Browse files Browse the repository at this point in the history
  • Loading branch information
k4black committed May 14, 2024
1 parent 76f1f25 commit c6f0eec
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,13 @@ jobs:
run: |
rm -rf ./dist/*.tar.gz
shell: bash
- name: Build tree-sitter languages for arm64 (not available on PyPI for now)
if: startsWith(matrix.os, 'macos-latest')
shell: bash
run: |
languages="python java javascript c-sharp c cpp go ruby rust php"
for lang in $languages; do
python3 -m pip install git+https://github.com/tree-sitter/tree-sitter-$lang
- name: Install lib and dependencies
run: |
# force install package from local dist directory
Expand Down

0 comments on commit c6f0eec

Please sign in to comment.