Skip to content

Commit

Permalink
ci: handle so removal for mac and ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
stackmystack committed Nov 14, 2022
1 parent a5a4d3d commit 883e11b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,14 @@ jobs:
cd tree-sitter
make
sudo make install
- name: delete .so (ubuntu)
if: ${{ matrix.os == 'ubuntu'}}
run: |
sudo rm /usr/local/lib/libtree-sitter.so*
- name: delete .so (macos)
if: ${{ matrix.os == 'macos'}}
run: |
sudo rm /usr/local/lib/libtree-sitter.dylib*
- name: ldconfig
if: ${{ matrix.os == 'ubuntu' }}
run: |
Expand Down

0 comments on commit 883e11b

Please sign in to comment.