Fix workflows

This commit is contained in:
Jiga228
2025-09-14 15:10:47 +07:00
parent 78a25b305b
commit 1b5608327c
2 changed files with 9 additions and 0 deletions
+3
View File
@@ -23,6 +23,9 @@ jobs:
- name: Проверка содержимого glfw - name: Проверка содержимого glfw
run: ls -la 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 - name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
+6
View File
@@ -23,6 +23,12 @@ jobs:
- name: Проверка содержимого glfw - name: Проверка содержимого glfw
run: dir 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 - name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}