diff --git a/.gitlab-ci/windows/mesa_deps_vs2019.ps1 b/.gitlab-ci/windows/mesa_deps_vs2019.ps1 index d1da176d9bd..377667bea7f 100644 --- a/.gitlab-ci/windows/mesa_deps_vs2019.ps1 +++ b/.gitlab-ci/windows/mesa_deps_vs2019.ps1 @@ -10,7 +10,22 @@ Invoke-WebRequest -Uri $msvc_2019_url -OutFile C:\vs_buildtools.exe Get-Date Write-Host "Installing Visual Studio 2019" -Start-Process -NoNewWindow -Wait C:\vs_buildtools.exe -ArgumentList '--wait --quiet --norestart --nocache --installPath C:\BuildTools --add Microsoft.VisualStudio.Workload.VCTools --add Microsoft.VisualStudio.Workload.NativeDesktop --add Microsoft.VisualStudio.Component.VC.ATL --add Microsoft.VisualStudio.Component.VC.ATLMFC --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.Graphics.Tools --add Microsoft.VisualStudio.Component.Windows10SDK.18362 --includeRecommended' +Start-Process -NoNewWindow -Wait -FilePath C:\vs_buildtools.exe ` +-ArgumentList ` +"--wait", ` +"--quiet", ` +"--norestart", ` +"--nocache", ` +"--installPath", "C:\BuildTools", ` +"--add", "Microsoft.VisualStudio.Workload.VCTools", ` +"--add", "Microsoft.VisualStudio.Workload.NativeDesktop", ` +"--add", "Microsoft.VisualStudio.Component.VC.ATL", ` +"--add", "Microsoft.VisualStudio.Component.VC.ATLMFC", ` +"--add", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", ` +"--add", "Microsoft.VisualStudio.Component.Graphics.Tools", ` +"--add", "Microsoft.VisualStudio.Component.Windows10SDK.18362", ` +"--includeRecommended" + if (!$?) { Write-Host "Failed to install Visual Studio tools" Exit 1