mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-24 13:47:46 +08:00
We're better off copying off the internal server using CIFS than using PowerShell's incredibly slow Invoke-WebRequest. Change-Id: Ic39cf08be70335e9309575d543155bffaceb0db0 Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io> Reviewed-by: Heikki Halmet <heikki.halmet@qt.io>
15 lines
434 B
PowerShell
15 lines
434 B
PowerShell
. "$PSScriptRoot\..\common\helpers.ps1"
|
|
|
|
# This script will install msys which is needed for configuring openssl for Android
|
|
|
|
$version = "1.0.11"
|
|
$url = "\\ci-files01-hki.ci.local\provisioning\windows\msys-$version.7z"
|
|
|
|
$zip = "c:\users\qt\downloads\msys-$version.7z"
|
|
$sha1 = "22cd76f1263db8c72727a9537228c481ff33c285"
|
|
$destination = "C:\msys"
|
|
|
|
Download $url $url $zip
|
|
Verify-Checksum $zip $sha1
|
|
C:\Utils\sevenzip\7z.exe x $zip -oC:\
|