From 975f2a0b92237684ef99b83d796a72709e01fca4 Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Thu, 25 Dec 2025 23:23:43 -0600 Subject: [PATCH] Install libwayland-dev in CI workflow Bevy 0.17 enables Wayland by default so the CI workflow needs to have it installed. --- .gitea/workflows/check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/check.yml b/.gitea/workflows/check.yml index 97d4606a..b534ce89 100644 --- a/.gitea/workflows/check.yml +++ b/.gitea/workflows/check.yml @@ -45,7 +45,7 @@ jobs: with: submodules: true - name: Install Dependencies - run: sudo apt-get update; sudo apt-get install -y --no-install-recommends libasound2-dev libudev-dev + run: sudo apt-get update; sudo apt-get install -y --no-install-recommends libasound2-dev libudev-dev libwayland-dev - name: Install nightly uses: dtolnay/rust-toolchain@nightly - name: cargo doc @@ -62,7 +62,7 @@ jobs: with: submodules: true - name: Install Dependencies - run: sudo apt-get update; sudo apt-get install -y --no-install-recommends libasound2-dev libudev-dev cmake + run: sudo apt-get update; sudo apt-get install -y --no-install-recommends libasound2-dev libudev-dev libwayland-dev cmake - name: Install stable uses: dtolnay/rust-toolchain@stable - name: cargo install cargo-hack @@ -85,7 +85,7 @@ jobs: with: submodules: true - name: Install Dependencies - run: sudo apt-get update; sudo apt-get install -y --no-install-recommends libasound2-dev libudev-dev + run: sudo apt-get update; sudo apt-get install -y --no-install-recommends libasound2-dev libudev-dev libwayland-dev - name: Install ${{ matrix.msrv }} uses: dtolnay/rust-toolchain@master with: