Skip to content

Commit

Permalink
👷 Install libasound2-dev on CI environment.
Browse files Browse the repository at this point in the history
  • Loading branch information
langyo committed Nov 16, 2024
1 parent 549fec6 commit 72e3b64
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:
- name: Checkout Project
uses: actions/checkout@v3

- name: Install libasound2-dev
run: sudo apt-get install libasound2-dev

- name: Setup Rust
uses: dtolnay/rust-toolchain@nightly
with:
Expand All @@ -29,6 +32,9 @@ jobs:
- name: Checkout Project
uses: actions/checkout@v3

- name: Install libasound2-dev
run: sudo apt-get install libasound2-dev

- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -40,7 +46,7 @@ jobs:
- name: Run cargo clippy
run: cargo clippy --all --all-features
env:
RUSTFLAGS: "--cfg releasing"
RUSTFLAGS: '--cfg releasing'

test:
name: Run tests
Expand All @@ -49,6 +55,9 @@ jobs:
- name: Checkout Project
uses: actions/checkout@v3

- name: Install libasound2-dev
run: sudo apt-get install libasound2-dev

- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -60,4 +69,4 @@ jobs:
- name: Run cargo test
run: cargo test --all-features --all
env:
RUSTFLAGS: "--cfg releasing"
RUSTFLAGS: '--cfg releasing'

0 comments on commit 72e3b64

Please sign in to comment.