Skip to content

Update Kong

Update Kong #2862

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