From af3018d93d09dd9bf13dcd85907a032191dc1648 Mon Sep 17 00:00:00 2001 From: Jiga228 Date: Sun, 14 Sep 2025 15:16:06 +0700 Subject: [PATCH] Add load dependency to ubuntu-test --- .github/workflows/ubuntu-test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ubuntu-test.yml b/.github/workflows/ubuntu-test.yml index ad494ee..a8f2a11 100644 --- a/.github/workflows/ubuntu-test.yml +++ b/.github/workflows/ubuntu-test.yml @@ -23,8 +23,10 @@ jobs: - name: Проверка содержимого glfw run: ls -la glfw - - name: Install Wayland dependencies - run: sudo apt-get update && sudo apt-get install -y wayland-protocols libwayland-dev + - name: Install Wayland dependencies and xkbcommon + run: | + sudo apt-get update + sudo apt-get install -y wayland-protocols libwayland-dev libxkbcommon-dev - name: Configure CMake run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}