Skip to content

Commit 046b2e1

Browse files
committed
👷 Install libclang for python in CI
Problem: - `gen_str_catalog.py` uses `libclang` to parse enumeration data. Solution: - Install `libclang`.
1 parent cbb1333 commit 046b2e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
cxx_flags: "-stdlib=libstdc++"
3939
- version: 19
4040
compiler: clang
41-
install: wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 19
41+
install: wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 19 all
4242
toolchain_root: "/usr/lib/llvm-19"
4343
- version: 19
4444
compiler: clang
@@ -109,6 +109,7 @@ jobs:
109109
run: |
110110
${{ matrix.install }}
111111
sudo apt install -y ninja-build
112+
sudo pip install libclang
112113
113114
- name: Restore CPM cache
114115
env:

0 commit comments

Comments
 (0)