mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-01 19:36:04 +08:00
It's hasn't been .intra.qt.io for quite some time, it has worked through an alias we have on the DNS server. Change-Id: I0bc17668dacfea64c276bb553e75e4be16e97659 Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io> Reviewed-by: Matti Paaso <matti.paaso@qt.io>
17 lines
519 B
PowerShell
17 lines
519 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.ci.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
|