mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-01 19:36:04 +08:00
Replace the current license disclaimer in files by
a SPDX-License-Identifier.
License files are organized under LICENSES directory.
Task-number: QTBUG-67283
Task-number: QTBUG-108364
Change-Id: If26e4d35c780db4a7982bb84872b251dad24716e
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
(cherry picked from commit eecfb19548)
50 lines
1.9 KiB
PowerShell
50 lines
1.9 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.0.1"
|
|
$qtBranch = "63x"
|
|
$targetDir = "C:\Utils\squish"
|
|
$squishPackage = "C:\Utils\rta_squish"
|
|
$squishUrl = "\\ci-files01-hki.intra.qt.io\provisioning\squish\jenkins_build\stable"
|
|
$licenseUrl = "\\ci-files01-hki.intra.qt.io\provisioning\squish\coin\$qtBranch"
|
|
|
|
# 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 = "9c1554ba55f3d4927f89d0d939a52988272d5494"
|
|
}
|
|
} else {
|
|
$winVersion = "n/a"
|
|
}
|
|
$squishArchive = "prebuild-squish-$version-$qtBranch-$winVersion-$arch.zip"
|
|
|
|
Copy-Item "$squishUrl\$squishArchive" "C:\Utils"
|
|
Verify-Checksum "C:\Utils\$squishArchive" $sha1
|
|
Extract-7Zip "C:\Utils\$squishArchive" "C:\Utils"
|
|
Rename-Item "$squishPackage" "$targetDir"
|
|
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 "$targetDir\suite_test_squish" |Select-String -Pattern "Squish test run successfully") { Write-Host "Squish tested successfully"} else { [Environment]::Exit(1) } }
|