Skip to content

Commit

Permalink
CI: install libudev-dev to satisfy libudev-sys dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Antikyth committed Nov 18, 2023
1 parent 3533d2d commit 484003e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ jobs:
- name: Checkout AquariWM
uses: actions/checkout@v3

# Install `libudev-dev` to satisfy the `libudev-sys` crate's `libudev` dependency.
- name: Install libudev-dev
run: |
sudo apt-get update
sudo apt-get install libudev-dev
# Install the latest nightly release of the Rust toolchain.
- name: Install latest nightly
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -106,6 +112,12 @@ jobs:
with:
ref: ${{ needs.fix-n-format.outputs.commit-id }}

# Install `libudev-dev` to satisfy the `libudev-sys` crate's `libudev` dependency.
- name: Install libudev-dev
run: |
sudo apt-get update
sudo apt-get install libudev-dev
# Install the latest nightly release of the Rust toolchain.
- name: Install latest nightly
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -141,6 +153,12 @@ jobs:
with:
ref: ${{ needs.fix-n-format.outputs.commit-id }}

# Install `libudev-dev` to satisfy the `libudev-sys` crate's `libudev` dependency.
- name: Install libudev-dev
run: |
sudo apt-get update
sudo apt-get install libudev-dev
# Install the latest nightly release of the Rust toolchain.
- name: Install latest nightly
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -179,6 +197,12 @@ jobs:
ref: ${{ needs.fix-n-format.outputs.commit-id }}
path: aquariwm

# Install `libudev-dev` to satisfy the `libudev-sys` crate's `libudev` dependency.
- name: Install libudev-dev
run: |
sudo apt-get update
sudo apt-get install libudev-dev
# Check out a template to put the generated docs in.
- name: Checkout AquariWM docs template
uses: actions/checkout@v3
Expand Down

0 comments on commit 484003e

Please sign in to comment.