mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-01 19:36:04 +08:00
Installing Android toolchains and ssl headers to win10 template
and moving Android windows platform configs to win10 from win7.
Task-number: QTQAINFRA-1266
Change-Id: I9b3e3a378451e0bdfc7dc5c7b75ee035faf8994c
Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
(cherry picked from commit 5a040ca46a)
17 lines
478 B
PowerShell
17 lines
478 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
|
|
C:\Utils\sevenzip\7z.exe x $zip -oC:\
|
|
|
|
Write-Output "Msys = $version" >> ~/versions.txt
|