Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Commit

Permalink
Add build deps to all runners
Browse files Browse the repository at this point in the history
  • Loading branch information
darthdeus committed Oct 20, 2023
1 parent 361a04a commit 89922d9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: dtolnay/rust-toolchain@nightly

- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
run: sudo apt-get update; sudo apt-get install --no-install-recommends g++ pkg-config libx11-dev libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
if: runner.os == 'linux'

- name: Cache rust modules
Expand Down Expand Up @@ -74,6 +74,10 @@ jobs:
cache-on-failure: true
shared-key: ubuntu-build

- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends g++ pkg-config libx11-dev libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
if: runner.os == 'linux'

- run: cargo clippy --all-features -- -D warnings

doc:
Expand All @@ -85,6 +89,10 @@ jobs:

- uses: dtolnay/rust-toolchain@nightly

- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends g++ pkg-config libx11-dev libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
if: runner.os == 'linux'

- name: doc
run: cargo doc --no-deps --all-features
env:
Expand Down

0 comments on commit 89922d9

Please sign in to comment.