diff --git a/.github/workflows/ubuntu-test.yml b/.github/workflows/ubuntu-test.yml index 22b977f..ad494ee 100644 --- a/.github/workflows/ubuntu-test.yml +++ b/.github/workflows/ubuntu-test.yml @@ -23,6 +23,9 @@ 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: Configure CMake run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} diff --git a/.github/workflows/windows-test.yml b/.github/workflows/windows-test.yml index a379efd..29a760e 100644 --- a/.github/workflows/windows-test.yml +++ b/.github/workflows/windows-test.yml @@ -23,6 +23,12 @@ jobs: - name: Проверка содержимого glfw run: dir glfw + - name: Install Vulkan SDK 1.4.321.1 + run: | + Invoke-WebRequest -Uri https://sdk.lunarg.com/sdk/download/1.4.321.1/windows/vulkan-sdk-1.4.321.1-setup.exe -OutFile vulkan-sdk-setup.exe + Start-Process -FilePath vulkan-sdk-setup.exe -ArgumentList '/S' -Wait + shell: powershell + - name: Configure CMake run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}