mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-06 15:06:52 +08:00
The helper makes sure that all questions for confirmation are answered with yes, which unblocks a second provisioning run. Change-Id: I33b58a98ceed3f736eabde90e15e959a7139923e Reviewed-by: Toni Saario <toni.saario@qt.io>
17 lines
522 B
PowerShell
17 lines
522 B
PowerShell
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
# This script will install msys which is needed for configuring openssl for Android
|
|
|
|
$version = "1.0.11"
|
|
$url = "\\ci-files01-hki.intra.qt.io\provisioning\windows\msys-$version.7z"
|
|
|
|
$zip = Get-DownloadLocation ("msys-$version.7z")
|
|
$sha1 = "22cd76f1263db8c72727a9537228c481ff33c285"
|
|
$destination = "C:\msys"
|
|
|
|
Download $url $url $zip
|
|
Verify-Checksum $zip $sha1
|
|
Extract-7Zip $zip C:\
|
|
Set-EnvironmentVariable "MSYS_PATH" "$destination\\1.0\\bin"
|
|
Write-Output "Msys = $version" >> ~/versions.txt
|