We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 48eb10e + 6f9414b commit 87dcdd2Copy full SHA for 87dcdd2
1 file changed
.github/workflows/release_linux.yml
@@ -18,6 +18,12 @@ jobs:
18
# Set up Rust toolchain
19
- name: Set up Rust toolchain
20
uses: dtolnay/rust-toolchain@stable # Set up the Rust toolchain
21
+ # Install Linux dependencies (for alsa-sys and other potential native dependencies)
22
+ - name: Install Linux ALSA dependencies
23
+ run: |
24
+ sudo apt-get update
25
+ sudo apt-get install -y libasound2-dev # Install ALSA development libraries
26
+ sudo apt-get install -y pkg-config # Ensure pkg-config is installed
27
28
# Install dependencies (this step is just to ensure the release build works)
29
- name: Install dependencies
0 commit comments