We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cece33d commit 088d744Copy full SHA for 088d744
.github/workflows/jingle_python.yml
@@ -38,9 +38,20 @@ jobs:
38
- uses: actions/setup-python@v5
39
with:
40
python-version: 3.x
41
- - name: Install libclang
+
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
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
53
run: |
- sudo apt update && sudo apt install libclang-dev -y
54
+ dpkg -l | grep libclang
55
- name: Install dependencies via pip (PEP 517)
56
working-directory: jingle_python
57
0 commit comments