mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-24 16:05:36 +08:00
If there is an outdated MSVC installer bootstrapper an update to MSVC might silently fail. Make sure that we update the bootstrapper before calling the actual update. NOTE! This change also upgrades MSVC 2019 version to 16.11.10 See https://developercommunity.visualstudio.com/t/setup-does-not-wait-for-installation-to-complete-w/26668 for some more information. Pick-to: 6.2 6.3 5.15 Fixes: QTQAINFRA-4813 Change-Id: Ia595ceb5b373d1210670d3f357fb501bca1c8272 Reviewed-by: Toni Saario <toni.saario@qt.io>
84 lines
4.5 KiB
PowerShell
84 lines
4.5 KiB
PowerShell
############################################################################
|
|
##
|
|
## Copyright (C) 2021 The Qt Company Ltd.
|
|
## Contact: https://www.qt.io/licensing/
|
|
##
|
|
## This file is part of the provisioning scripts of the Qt Toolkit.
|
|
##
|
|
## $QT_BEGIN_LICENSE:LGPL$
|
|
## Commercial License Usage
|
|
## Licensees holding valid commercial Qt licenses may use this file in
|
|
## accordance with the commercial license agreement provided with the
|
|
## Software or, alternatively, in accordance with the terms contained in
|
|
## a written agreement between you and The Qt Company. For licensing terms
|
|
## and conditions see https://www.qt.io/terms-conditions. For further
|
|
## information use the contact form at https://www.qt.io/contact-us.
|
|
##
|
|
## GNU Lesser General Public License Usage
|
|
## Alternatively, this file may be used under the terms of the GNU Lesser
|
|
## General Public License version 3 as published by the Free Software
|
|
## Foundation and appearing in the file LICENSE.LGPL3 included in the
|
|
## packaging of this file. Please review the following information to
|
|
## ensure the GNU Lesser General Public License version 3 requirements
|
|
## will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
|
|
##
|
|
## GNU General Public License Usage
|
|
## Alternatively, this file may be used under the terms of the GNU
|
|
## General Public License version 2.0 or (at your option) the GNU General
|
|
## Public license version 3 or any later version approved by the KDE Free
|
|
## Qt Foundation. The licenses are as published by the Free Software
|
|
## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
|
|
## included in the packaging of this file. Please review the following
|
|
## information to ensure the GNU General Public License requirements will
|
|
## be met: https://www.gnu.org/licenses/gpl-2.0.html and
|
|
## https://www.gnu.org/licenses/gpl-3.0.html.
|
|
##
|
|
## $QT_END_LICENSE$
|
|
##
|
|
#############################################################################
|
|
|
|
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
# This script will update MSVC 2019.
|
|
# NOTE! Visual Studio is pre-installed to tier 1 image so this script won't install the whole Visual Studio. See ../../../pre-provisioning/qtci-windows-10-x86_64/msvc2019.txt
|
|
# MSVC 2019 online installers can be found from here https://docs.microsoft.com/en-us/visualstudio/releases/2019/history#installing-an-earlier-release
|
|
|
|
$version = "16.11.10"
|
|
$urlCache_vsInstaller = "\\ci-files01-hki.intra.qt.io\provisioning\windows\msvc\vs2019_Professional_$version.exe"
|
|
$urlOfficial_vsInstaller = "https://download.visualstudio.microsoft.com/download/pr/791f3d28-7e20-45d9-9373-5dcfbdd1f6db/cd440cf67c0cf1519131d1d51a396e44c5b4f7b68b541c9f35c05a310d692f0a/vs_Professional.exe"
|
|
$sha1_vsInstaller = "d4f3b3b7dc28dcc3f25474cd1ca1e39fca7dcf3f"
|
|
$urlCache_buildToolsInstaller = "\\ci-files01-hki.intra.qt.io\provisioning\windows\msvc\vs2019_BuildTools_$version.exe"
|
|
$urlOfficial_buildToolsInstaller = "https://download.visualstudio.microsoft.com/download/pr/791f3d28-7e20-45d9-9373-5dcfbdd1f6db/d5eabc3f4472d5ab18662648c8b6a08ea0553699819b88f89d84ec42d12f6ad7/vs_BuildTools.exe"
|
|
$sha1_buildToolsInstaller = "69889f45d229de8e0e76b6d9e05964477eee2e78"
|
|
$installerPath = "C:\Windows\Temp\installer.exe"
|
|
|
|
function Install {
|
|
|
|
Param (
|
|
[string] $urlOfficial = $(BadParam("Official url path")),
|
|
[string] $urlCache = $(BadParam("Cached url path")),
|
|
[string] $sha1 = $(BadParam("SHA1 checksum of the file"))
|
|
|
|
)
|
|
|
|
Write-Host "Installing msvc 2019 $version"
|
|
Download $urlOfficial $urlCache $installerPath
|
|
Verify-Checksum $installerPath $sha1
|
|
# We have to update the installer bootstrapper before calling the actual installer.
|
|
# Otherwise installation might fail silently
|
|
Run-Executable "$installerPath" "--quiet --update"
|
|
Run-Executable "$installerPath" "update --passive --wait"
|
|
Remove-Item -Force -Path $installerPath
|
|
}
|
|
|
|
Install $urlOfficial_vsInstaller $urlCache_vsInstaller $sha1_vsInstaller
|
|
Install $urlOfficial_buildToolsInstaller $urlCache_buildToolsInstaller $sha1_buildToolsInstaller
|
|
|
|
$msvc2019Version = (cmd /c "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe" -latest -property catalog_productDisplayVersion 2`>`&1)
|
|
|
|
Write-Output "Visual Studio 2019 = $msvc2019Version" >> ~\versions.txt
|
|
Write-Output "Visual Studio 2019 Build Tools = $version" >> ~\versions.txt
|
|
|
|
# Add Windows SDK Version and VCTools Version to versions.txt
|
|
cmd /c '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Auxiliary\Build\vcvarsall.bat" amd64 & set' |Select-String -Pattern '(WindowsSDKVersion)|(VCToolsVersion)' >> ~\versions.txt
|