Skip to content

Commit

Permalink
fix vulkan sdk installer arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
Inori committed Jun 26, 2023
1 parent f9675aa commit 0c8f07e
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Build GPCS4

on:
Expand Down Expand Up @@ -40,7 +35,7 @@ jobs:
if: ${{steps.cache-vulkan-sdk.outputs.cache-hit != 'true'}}
run: |
Invoke-WebRequest -Uri "https://sdk.lunarg.com/sdk/download/1.3.250.0/windows/VulkanSDK-1.3.250.0-Installer.exe" -OutFile VulkanSDK.exe
$installer = Start-Process -FilePath VulkanSDK.exe -Wait -PassThru -ArgumentList @("/S");
$installer = Start-Process -FilePath VulkanSDK.exe -Wait -PassThru -ArgumentList @("--accept-licenses --default-answer --confirm-command install");
$installer.WaitForExit();
Expand Down

0 comments on commit 0c8f07e

Please sign in to comment.