mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-02 03:36:54 +08:00
Pick-to: 6.6 Pick-to: 6.7 Change-Id: I620776afb2e4575ffbc9b9c3c6c53c25516add08 Reviewed-by: Ville-Pekka Karhu <ville-pekka.karhu@qt.io> Reviewed-by: Tero Heikkinen <tero.heikkinen@qt.io>
53 lines
2.0 KiB
PowerShell
53 lines
2.0 KiB
PowerShell
# Copyright (C) 2021 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
# This script will pre-installed squish package for Windows.
|
|
# Squish is need by Release Test Automation (RTA)
|
|
|
|
$version = "7.2.1"
|
|
$qtBranch = "66x"
|
|
$targetDir = "C:\Utils\squish"
|
|
$squishPackage = "C:\Utils\rta_squish"
|
|
$squishUrl = "\\ci-files01-hki.ci.qt.io\provisioning\squish\jenkins_build\stable"
|
|
$licenseBranch="squish_license"
|
|
$licenseUrl = "\\ci-files01-hki.ci.qt.io\provisioning\squish\coin\$licenseBranch"
|
|
$testSuiteUrl="\\ci-files01-hki.ci.qt.io\provisioning\squish\coin\suite_test_squish"
|
|
|
|
# Squish license
|
|
$licensePackage = ".squish-license"
|
|
|
|
Write-Host "Installing Squish license to home directory"
|
|
Copy-Item $licenseUrl\$licensePackage ~\$licensePackage
|
|
|
|
if (Is64BitWinHost) {
|
|
$arch = "x64"
|
|
} else {
|
|
$arch = "x86"
|
|
}
|
|
|
|
$OSVersion = (get-itemproperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -Name ProductName).ProductName
|
|
|
|
if (($OSVersion -eq "Windows 10 Enterprise") -or ($OSVersion -eq "Windows 10 Pro")) {
|
|
# In Windows 11 case $OSVersion is 'Windows 10 Pro'
|
|
$winVersion = "win10"
|
|
if (Is64BitWinHost) {
|
|
$sha1 = "eed4ed4936fbbacb11e0d8a00ff190e1ea808eeb"
|
|
}
|
|
} else {
|
|
$winVersion = "n/a"
|
|
}
|
|
$squishArchive = "prebuild-squish-$version-$qtBranch-$winVersion-$arch.zip"
|
|
|
|
Copy-Item "$squishUrl\$squishArchive" "C:\Utils"
|
|
Copy-Item -Recurse "$testSuiteUrl" "C:\Utils"
|
|
Verify-Checksum "C:\Utils\$squishArchive" $sha1
|
|
Extract-7Zip "C:\Utils\$squishArchive" "C:\Utils"
|
|
|
|
Remove-Item "C:\Utils\prebuild*"
|
|
|
|
Write-Host "Verifying Squish Installation for following targets:"
|
|
get-childitem "$targetDir" -Filter squishrunner.exe -Recurse | % { $_.FullName }
|
|
get-childitem "$targetDir" -Filter squishrunner.exe -Recurse | % { if (cmd /c $_.FullName --testsuite "C:\Utils\suite_test_squish" |Select-String -Pattern "Squish test run successfully") { Write-Host "Squish tested successfully"} else { [Environment]::Exit(1) } }
|