Skip to content

Commit a58ac2e

Browse files
committed
fix: CI windows-2019 got deprecated and doesn't run at all, trying windows-2022
1 parent 6fe2431 commit a58ac2e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ jobs:
336336
$VSInstallerPath = "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vs_installer.exe"
337337
$InstallPath = "C:\Program Files\Microsoft Visual Studio\2022\Enterprise"
338338
339-
$process = Start-Process -FilePath "$VSInstallerPath" -ArgumentList 'modify', '--quiet', '--norestart', '--nocache', '--wait' `
339+
$process = Start-Process -FilePath "$VSInstallerPath" -ArgumentList 'modify', '--quiet', '--norestart', '--nocache', '--wait', `
340340
"--installPath=$InstallPath", '--add', "Microsoft.VisualStudio.Component.VC.v141.x86.x64", '--add', "Microsoft.VisualStudio.Component.WinXP" -Wait -PassThru -NoNewWindow
341341
if ($process.ExitCode -eq 0 -or $process.ExitCode -eq 3010) {
342342
Write-Host "Installation successful (Exit Code: $($process.ExitCode))"

0 commit comments

Comments
 (0)