mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-07 07:26:52 +08:00
The missing files were downloaded from their external source and placed in their directories of the cache URLs. Files: FFmpeg-n6.0.tar.gz, Postgres-2.5-14.dmg, protobuf-all-21.9.zip, MimerSQLInstaller_x64_1107b.exe, FFmpeg-n6.0.zip, msys2-base-x86_64-20220319.tar.xz, python-3.10.0-amd64.exe, python-2.7.13.msi, mimersqlsrv_11.0_amd64-openssl3.deb, mimersqlsrv-11.0.x86_64-openssl3.rpm, MinGW-w64-x86_64-11.2.0-release-posix-seh-rt_v9-rev3.7z Task-number: QTQAINFRA-5766 Change-Id: Ieacdc9138b71969397d900096956f54faff45918 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Heikki Halmet <heikki.halmet@qt.io>
34 lines
978 B
PowerShell
34 lines
978 B
PowerShell
# Copyright (C) 2017 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 installs 7-Zip
|
|
|
|
$version = "23.01"
|
|
$nonDottedVersion = "2301"
|
|
|
|
if (Is64BitWinHost) {
|
|
$arch = "-x64"
|
|
$sha1 = "7DF28D340D7084647921CC25A8C2068BB192BDBB"
|
|
} else {
|
|
$arch = ""
|
|
$sha1 = "D5D00E6EA8B8E68CE7A704FD478DC950E543C25C"
|
|
}
|
|
|
|
$url_cache = "https://ci-files01-hki.ci.qt.io/input/windows/7z" + $nonDottedVersion + $arch + ".exe"
|
|
$url_official = "http://www.7-zip.org/a/7z" + $nonDottedVersion + $arch + ".exe"
|
|
$7zPackage = "C:\Windows\Temp\7zip-$nonDottedVersion.exe"
|
|
$7zTargetLocation = "C:\Utils\sevenzip\"
|
|
|
|
Download $url_official $url_cache $7zPackage
|
|
Verify-Checksum $7zPackage $sha1
|
|
Run-Executable $7zPackage "/S","/D=$7zTargetLocation"
|
|
|
|
Write-Host "Cleaning $7zPackage.."
|
|
Remove "$7zPackage"
|
|
|
|
Add-Path $7zTargetLocation
|
|
|
|
Write-Output "7-Zip = $version" >> ~\versions.txt
|