diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-07-07 09:37:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-07 09:37:27 +0200 |
commit | d6a9ed32e6a8315fc5aef0da70de31256fc86a2b (patch) | |
tree | e9a5e1d828b14f85d030f3b3613d4d8bf94a3a88 /.ci/scripts/windows/install-vulkan-sdk.ps1 | |
parent | Merge pull request #10999 from Morph1984/fix-install-progress (diff) | |
parent | general: Update VulkanSDK and Vulkan-Headers (diff) | |
download | yuzu-d6a9ed32e6a8315fc5aef0da70de31256fc86a2b.tar yuzu-d6a9ed32e6a8315fc5aef0da70de31256fc86a2b.tar.gz yuzu-d6a9ed32e6a8315fc5aef0da70de31256fc86a2b.tar.bz2 yuzu-d6a9ed32e6a8315fc5aef0da70de31256fc86a2b.tar.lz yuzu-d6a9ed32e6a8315fc5aef0da70de31256fc86a2b.tar.xz yuzu-d6a9ed32e6a8315fc5aef0da70de31256fc86a2b.tar.zst yuzu-d6a9ed32e6a8315fc5aef0da70de31256fc86a2b.zip |
Diffstat (limited to '')
-rw-r--r-- | .ci/scripts/windows/install-vulkan-sdk.ps1 | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.ci/scripts/windows/install-vulkan-sdk.ps1 b/.ci/scripts/windows/install-vulkan-sdk.ps1 new file mode 100644 index 000000000..de218d90a --- /dev/null +++ b/.ci/scripts/windows/install-vulkan-sdk.ps1 @@ -0,0 +1,33 @@ +# SPDX-FileCopyrightText: 2023 yuzu Emulator Project +# SPDX-License-Identifier: GPL-3.0-or-later + +$ErrorActionPreference = "Stop" + +$VulkanSDKVer = "1.3.250.1" +$ExeFile = "VulkanSDK-$VulkanSDKVer-Installer.exe" +$Uri = "https://sdk.lunarg.com/sdk/download/$VulkanSDKVer/windows/$ExeFile" +$Destination = "./$ExeFile" + +echo "Downloading Vulkan SDK $VulkanSDKVer from $Uri" +$WebClient = New-Object System.Net.WebClient +$WebClient.DownloadFile($Uri, $Destination) +echo "Finished downloading $ExeFile" + +$VULKAN_SDK = "C:/VulkanSDK/$VulkanSDKVer" +$Arguments = "--root `"$VULKAN_SDK`" --accept-licenses --default-answer --confirm-command install" + +echo "Installing Vulkan SDK $VulkanSDKVer" +$InstallProcess = Start-Process -FilePath $Destination -NoNewWindow -PassThru -Wait -ArgumentList $Arguments +$ExitCode = $InstallProcess.ExitCode + +if ($ExitCode -ne 0) { + echo "Error installing Vulkan SDK $VulkanSDKVer (Error: $ExitCode)" + Exit $ExitCode +} + +echo "Finished installing Vulkan SDK $VulkanSDKVer" + +if ("$env:GITHUB_ACTIONS" -eq "true") { + echo "VULKAN_SDK=$VULKAN_SDK" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append + echo "$VULKAN_SDK/Bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append +} |