Skip to content

Commit

Permalink
Try building like sphinx-c-autodoc does
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jul 1, 2024
1 parent c1bf2fc commit e7acb0e
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,22 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: true

- name: Cache LLVM and Clang
id: cache-llvm
uses: actions/cache@v4
with:
path: llvm/lib/libclang.so*
key: llvm-17

- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
with:
version: "17.0"
cached: ${{ steps.cache-llvm.outputs.cache-hit }}

- run: sudo apt-get install -y clang libclang-dev
- name: Symlink libclang.so
run: sudo ln -s ./llvm/lib/libclang.so /usr/lib/x86_64-linux-gnu/libclang-17.so

- name: Use Python 3.12
uses: actions/setup-python@v5
Expand Down

0 comments on commit e7acb0e

Please sign in to comment.