Skip to content

Commit

Permalink
fix: add build dependencies for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sbwtw committed Jan 14, 2024
1 parent 9f795e6 commit 28aad17
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,17 @@ jobs:
with:
apt: libpango1.0-dev libgtk-4-dev

- uses: KyleMayes/install-llvm-action@v1
with:
version: "16.0"
directory: ${{ runner.temp }}/llvm-16

- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
env:
LLVM_SYS_160_PREFIX: ${{ runner.temp }}/llvm-16
- name: Run tests
run: cargo test --verbose
env:
LLVM_SYS_160_PREFIX: ${{ runner.temp }}/llvm-16

0 comments on commit 28aad17

Please sign in to comment.