Skip to content

Commit 63dcd53

Browse files
cfisclaude
andcommitted
Fix CI: install llvm and set LIBCLANG path
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4a68c44 commit 63dcd53

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v6
1919

20-
- name: Install libclang
21-
run: sudo apt-get install -y libclang-dev
20+
- name: Install LLVM and libclang
21+
run: |
22+
sudo apt-get install -y llvm libclang-dev
23+
echo "LIBCLANG=$(llvm-config --libdir)/libclang.so" >> $GITHUB_ENV
2224
2325
- name: Set up Ruby
2426
uses: ruby/setup-ruby@v1

0 commit comments

Comments
 (0)