Skip to content

Commit 088d744

Browse files
committed
Try this out
1 parent cece33d commit 088d744

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/jingle_python.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,20 @@ jobs:
3838
- uses: actions/setup-python@v5
3939
with:
4040
python-version: 3.x
41-
- name: Install libclang
41+
42+
- name: Install dependencies
43+
run: |
44+
sudo apt-get update
45+
sudo apt-get install -y libclang-dev clang
46+
47+
- name: Set LIBCLANG_PATH
48+
run: |
49+
export LIBCLANG_PATH=$(find /usr -name 'libclang.so*' | head -n 1)
50+
echo "LIBCLANG_PATH=$LIBCLANG_PATH" >> $GITHUB_ENV
51+
52+
- name: Verify libclang-dev installation
4253
run: |
43-
sudo apt update && sudo apt install libclang-dev -y
54+
dpkg -l | grep libclang
4455
- name: Install dependencies via pip (PEP 517)
4556
working-directory: jingle_python
4657
run: |

0 commit comments

Comments
 (0)