Skip to content

Commit a4b18d4

Browse files
authored
Update release_linux.yml
1 parent 87a6019 commit a4b18d4

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/release_linux.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818
# Set up Rust toolchain
1919
- name: Set up Rust toolchain
2020
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 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
2127
2228
# Install dependencies (this step is just to ensure the release build works)
2329
- name: Install dependencies

0 commit comments

Comments
 (0)