From 49182ec21ee642f43184b8c48c2a4e94c14ded50 Mon Sep 17 00:00:00 2001 From: Jiga228 Date: Sun, 14 Sep 2025 15:18:40 +0700 Subject: [PATCH] Add X11 dependency --- .github/workflows/ubuntu-test.yml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ubuntu-test.yml b/.github/workflows/ubuntu-test.yml index a8f2a11..55d679d 100644 --- a/.github/workflows/ubuntu-test.yml +++ b/.github/workflows/ubuntu-test.yml @@ -23,17 +23,12 @@ jobs: - name: Проверка содержимого glfw run: ls -la glfw - - name: Install Wayland dependencies and xkbcommon + - name: Install Wayland and X11 dependencies run: | sudo apt-get update - sudo apt-get install -y wayland-protocols libwayland-dev libxkbcommon-dev + sudo apt-get install -y \ + wayland-protocols libwayland-dev libxkbcommon-dev \ + libx11-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev - name: Configure CMake - run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - - - name: Build - run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} - - #- name: Test - # working-directory: ${{github.workspace}}/build - # run: ctest -C ${{env.BUILD_TYPE}} + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUI_