Skip to content

Commit

Permalink
fix: install alsa and udev
Browse files Browse the repository at this point in the history
  • Loading branch information
BD103 committed Jun 11, 2024
1 parent 0834f74 commit 916bac7
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,18 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- name: Cache build files
uses: Leafwing-Studios/cargo-cache@v1

- name: Install Bencher
uses: bencherdev/bencher@main

- name: Install Linux dependencies
run: |
sudo apt-get update
# Installs Alsa and udev.
sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Cache build files
uses: Leafwing-Studios/cargo-cache@v1

# Run benchmarks, piping output to both `results.txt` and stdout.
- name: Run benchmarks
run: cargo bench -- 2>&1 | tee results.txt
Expand Down

0 comments on commit 916bac7

Please sign in to comment.