mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-17 01:36:32 +08:00
This reverts commit 72f11e0952.
Reason for revert: WoA is not going be included in 6.7 and WoA target is blocking dd08ded0fc20f5fce10bf287d4d22ae026226717, -51 template will not work with the proxy enabled and -53 template brings error C2672 with its updated MSVC in 6.7 qtbase.
Task-number: QTQAINFRA-6111
Change-Id: I13fde01aba392b173db178bff6893b71c20ae98a
Reviewed-by: Jani Heikkinen <jani.heikkinen@qt.io>
27 lines
865 B
PowerShell
27 lines
865 B
PowerShell
# Copyright (C) 2019 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
$majorminorversion = "3.27"
|
|
$version = "3.27.7"
|
|
|
|
$zip = Get-DownloadLocation ("cmake-" + $version + "-windows-i386.zip")
|
|
$officialurl = "https://cmake.org/files/v" + $majorminorversion + "/cmake-" + $version + "-windows-i386.zip"
|
|
$cachedurl = "\\ci-files01-hki.ci.qt.io\provisioning\cmake\cmake-" + $version + "-windows-i386.zip"
|
|
|
|
Write-Host "Removing old cmake"
|
|
Remove "C:\CMake"
|
|
|
|
Download $officialurl $cachedurl $zip
|
|
Verify-Checksum $zip "b6147215a5f9cd1138b012265229fbf2224d02c6"
|
|
|
|
Extract-7Zip $zip C:
|
|
$defaultinstallfolder = "C:\cmake-" + $version + "-windows-i386"
|
|
Rename-Item $defaultinstallfolder C:\CMake
|
|
|
|
Add-Path "C:\CMake\bin"
|
|
|
|
Write-Output "CMake = $version" >> ~\versions.txt
|
|
|