Skip to content

Commit

Permalink
CI: install libclang on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospb19 committed Sep 29, 2023
1 parent c81dfcc commit 6f970b9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,15 @@ jobs:
popd
echo CARGO=cross >> $GITHUB_ENV
- name: Install dependencies (Linux)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install llvm-dev libclang-dev clang
- name: Install dependencies (x86_64-unknown-linux-musl)
if: matrix.target == 'x86_64-unknown-linux-musl'
run: |
sudo apt-get update
sudo apt-get install musl-tools
- name: Set up extra cargo flags
Expand Down

0 comments on commit 6f970b9

Please sign in to comment.