Skip to content

Commit

Permalink
Install alsa dependencies in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
hortonew committed Feb 22, 2025
1 parent 510aa53 commit 0d2dc12
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ jobs:
CARGO_PROFILE_RELEASE_LTO: true
CARGO_PROFILE_RELEASE_CODEGEN_UNITS: 1
steps:
- name: Install alsa dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
pkg-config \
libasound2-dev \
libudev-dev
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/release-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ jobs:
IMAGE_NAME: multiplayer-bevy-server

steps:
- name: Install alsa dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
pkg-config \
libasound2-dev \
libudev-dev
- name: Checkout repository
uses: actions/checkout@v4

Expand Down

0 comments on commit 0d2dc12

Please # to comment.