mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-06 20:35:59 +08:00
The builtin way of Windows for handling zip files is much slower than using 7zip. A small benchmark (not representative, just extracting the android ndk) showed 11 minutes using Extract-Zip vs 2,5 minutes using Extract-7Zip on my machine. Change-Id: I5198aabb5b75860ead687581fc5e368eb75e48ae Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
12 lines
388 B
PowerShell
12 lines
388 B
PowerShell
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
$zip = "c:\users\qt\downloads\winrtrunner.zip"
|
|
$url = "http://download.qt.io/development_releases/prebuilt/winrtrunner/winrtrunner.zip"
|
|
|
|
Download $url $url $zip
|
|
Verify-Checksum $zip "C19098A4C9DBD20EDEB4E5E0D3E6A5BBBCA73C42"
|
|
Extract-7Zip $zip C:\Utils\winrtrunner
|
|
Remove-Item -Path $zip
|
|
|
|
Set-EnvironmentVariable "CI_WINRTRUNNER_PATH" "C:\Utils\winrtrunner"
|