mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-04 14:07:42 +08:00
winrtrunner is needed for running auto tests on winrt. As the tool resides in qttools and not qtbase and it not changed often, it was decided to handle it similar to jom and see it as an external tool. Change-Id: I9636962df51f98bef6aad3e340c565f50e393949 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
11 lines
424 B
PowerShell
11 lines
424 B
PowerShell
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
$zip = "c:\users\qt\downloads\winrtrunner.zip"
|
|
|
|
Invoke-WebRequest -UseBasicParsing http://download.qt.io/development_releases/prebuilt/winrtrunner/winrtrunner.zip -OutFile $zip
|
|
Verify-Checksum $zip "C19098A4C9DBD20EDEB4E5E0D3E6A5BBBCA73C42"
|
|
Extract-Zip $zip C:\Utils\winrtrunner
|
|
Remove-Item $zip
|
|
|
|
[Environment]::SetEnvironmentVariable("CI_WINRTRUNNER_PATH", "C:\Utils\winrtrunner", "Machine")
|