Skip to content

Commit

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

# Install `libsystemd-dev` to satisfy the `libudev-sys` and `libseat-sys` crates'
# dependencies.
- name: Install libsystemd-dev
# Install `libsystemd-dev`, `libudev-dev`, and `libseat-dev` to satisfy the
# `libudev-sys` and `libseat-sys` crates' dependencies.
- name: Install libsystemd-dev, libudev-dev, and libseat-dev
run: |
sudo apt-get update
sudo apt-get install libsystemd-dev
sudo apt-get install libsystemd-dev libudev-dev libseat-dev
# Install the latest nightly release of the Rust toolchain.
- name: Install latest nightly
Expand Down Expand Up @@ -113,12 +113,12 @@ jobs:
with:
ref: ${{ needs.fix-n-format.outputs.commit-id }}

# Install `libsystemd-dev` to satisfy the `libudev-sys` and `libseat-sys` crates'
# dependencies.
- name: Install libsystemd-dev
# Install `libsystemd-dev`, `libudev-dev`, and `libseat-dev` to satisfy the
# `libudev-sys` and `libseat-sys` crates' dependencies.
- name: Install libsystemd-dev, libudev-dev, and libseat-dev
run: |
sudo apt-get update
sudo apt-get install libsystemd-dev
sudo apt-get install libsystemd-dev libudev-dev libseat-dev
# Install the latest nightly release of the Rust toolchain.
- name: Install latest nightly
Expand Down Expand Up @@ -155,12 +155,12 @@ jobs:
with:
ref: ${{ needs.fix-n-format.outputs.commit-id }}

# Install `libsystemd-dev` to satisfy the `libudev-sys` and `libseat-sys` crates'
# dependencies.
- name: Install libsystemd-dev
# Install `libsystemd-dev`, `libudev-dev`, and `libseat-dev` to satisfy the
# `libudev-sys` and `libseat-sys` crates' dependencies.
- name: Install libsystemd-dev, libudev-dev, and libseat-dev
run: |
sudo apt-get update
sudo apt-get install libsystemd-dev
sudo apt-get install libsystemd-dev libudev-dev libseat-dev
# Install the latest nightly release of the Rust toolchain.
- name: Install latest nightly
Expand Down Expand Up @@ -200,12 +200,12 @@ jobs:
ref: ${{ needs.fix-n-format.outputs.commit-id }}
path: aquariwm

# Install `libsystemd-dev` to satisfy the `libudev-sys` and `libseat-sys` crates'
# dependencies.
- name: Install libsystemd-dev
# Install `libsystemd-dev`, `libudev-dev`, and `libseat-dev` to satisfy the
# `libudev-sys` and `libseat-sys` crates' dependencies.
- name: Install libsystemd-dev, libudev-dev, and libseat-dev
run: |
sudo apt-get update
sudo apt-get install libsystemd-dev
sudo apt-get install libsystemd-dev libudev-dev libseat-dev
# Check out a template to put the generated docs in.
- name: Checkout AquariWM docs template
Expand Down

0 comments on commit a1b130d

Please sign in to comment.