Skip to content

Commit d0874d6

Browse files
ci(coverage): install ALSA dev package on linux
Install libasound2-dev in Coverage workflow to avoid alsa-sys pkg-config failures during llvm-cov runs.
1 parent 4b6183d commit d0874d6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/coverage.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v4
2727

28+
- name: Install devel packages
29+
run: |
30+
sudo apt-get update -qq
31+
sudo apt-get -y install libasound2-dev
32+
2833
- name: Rust cache
2934
uses: Swatinem/rust-cache@v2.7.3
3035

0 commit comments

Comments
 (0)