Skip to content

Commit

Permalink
fix(ci): install treesitter libs
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekStride committed Jun 28, 2024
1 parent e112274 commit 59eecec
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: build and install tree-sitter
run: |
git clone https://github.com/tree-sitter/tree-sitter
cd tree-sitter
git checkout tags/v0.22.6
make
sudo make install
sudo rm /usr/local/lib/libtree-sitter.a
- name: ldconfig
if: ${{ matrix.platform.os == 'ubuntu' }}
run: |
sudo ldconfig -v
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down

0 comments on commit 59eecec

Please sign in to comment.