mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-20 21:40:00 +08:00
Add winrtrunner to common tools on Windows 10 machines
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>
This commit is contained in:
10
coin/provisioning/common/winrtrunner.ps1
Normal file
10
coin/provisioning/common/winrtrunner.ps1
Normal file
@@ -0,0 +1,10 @@
|
||||
. "$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")
|
||||
1
coin/provisioning/qtci-windows-10-x86/winrtrunner.ps1
Normal file
1
coin/provisioning/qtci-windows-10-x86/winrtrunner.ps1
Normal file
@@ -0,0 +1 @@
|
||||
. "$PSScriptRoot\..\common\winrtrunner.ps1"
|
||||
1
coin/provisioning/qtci-windows-10-x86_64/winrtrunner.ps1
Normal file
1
coin/provisioning/qtci-windows-10-x86_64/winrtrunner.ps1
Normal file
@@ -0,0 +1 @@
|
||||
. "$PSScriptRoot\..\common\winrtrunner.ps1"
|
||||
Reference in New Issue
Block a user