Skip to content

Fix things for WebGL #2252

Fix things for WebGL

Fix things for WebGL #2252

name: Windows (Vulkan)
on:
push:
branches:
- v3
pull_request:
branches:
- v3
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.3.275.0/windows/VulkanSDK-1.3.275.0-Installer.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 vs2022 -g vulkan --kore . --from tests/empty --compile
env:
VULKAN_SDK: C:\VulkanSDK\1.3.275.0