Skip to content

Commit

Permalink
.github/workflows/windows-ncnn.yml: update vulkan sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
WolframRhodium committed Jan 20, 2024
1 parent 75e4449 commit 656b76e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/windows-ncnn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ jobs:
- name: Setup Vulkan SDK
shell: pwsh
run: |
Invoke-WebRequest -Uri https://sdk.lunarg.com/sdk/download/1.2.189.0/windows/VulkanSDK-1.2.189.0-Installer.exe?Human=true -OutFile VulkanSDK.exe
$installer = Start-Process -FilePath VulkanSDK.exe -Wait -PassThru -ArgumentList @("/S");
Invoke-WebRequest -Uri https://sdk.lunarg.com/sdk/download/1.3.275.0/windows/VulkanSDK-1.3.275.0-Installer.exe?Human=true -OutFile VulkanSDK.exe
$installer = Start-Process -FilePath VulkanSDK.exe -Wait -PassThru -ArgumentList "--accept-licenses --default-answer --confirm-command install";
$installer.WaitForExit();
- name: Configure
Expand All @@ -149,7 +149,7 @@ jobs:
-D ncnn_DIR=ncnn\lib\cmake\ncnn
-D CMAKE_CXX_STANDARD=20
env:
VULKAN_SDK: C:\VulkanSDK\1.2.189.0
VULKAN_SDK: C:\VulkanSDK\1.3.275.0

- name: Build
run: cmake --build build --verbose
Expand Down

0 comments on commit 656b76e

Please sign in to comment.