Update Kong #2862
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Windows (Vulkan) | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Vulkan | |
| run: | | |
| Invoke-WebRequest -Uri "https://sdk.lunarg.com/sdk/download/1.4.350.0/windows/vulkansdk-windows-X64-1.4.350.0.exe" -OutFile VulkanSDK.exe | |
| $installer = Start-Process -FilePath VulkanSDK.exe -Wait -PassThru -ArgumentList @("--da", "--al", "-c", "in"); | |
| $installer.WaitForExit(); | |
| - name: Get Submodules | |
| run: .\get_dlc.bat | |
| - name: Compile | |
| run: .\make.bat -v vs2026 -g vulkan --kore . --from tests/empty --compile | |
| env: | |
| VULKAN_SDK: C:\VulkanSDK\1.4.350.0 |