Skip to content

Commit

Permalink
Installs Linux deps via composite action
Browse files Browse the repository at this point in the history
  • Loading branch information
mnmaita committed Mar 7, 2021
1 parent 1a97eb8 commit f88b77a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: linux/build-deps@v1
- name: Installs cargo-deadlinks
run: cargo install cargo-deadlinks
- name: Checks dead doc links
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/linux/build-deps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
runs:
using: "composite"
steps:
- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
if: runner.os == 'linux'

0 comments on commit f88b77a

Please sign in to comment.