mirror of
git://code.qt.io/qt/qt5.git
synced 2026-05-05 18:56:43 +08:00
The packages required for FFmpeg provisioning may change between FFmpeg versions, as is the case when upgrading to FFmpeg n8.1. It is a time-waster to manually go through all hosts to make sure they all have the correct packages. Additionally we have no way of knowing whether a package is used by FFmpeg and/or something else. This patch moves the list of required FFmpeg packages into some common files, and refactors each host to read these files. This way we can modify provisioning in one place. Pick-to: 6.11 Change-Id: I31d409595b7da231b1f845c18095e77f7af51b0a Reviewed-by: Artem Dyomin <artem.dyomin@qt.io> Reviewed-by: Elias Toivola <elias.toivola@qt.io>
66 lines
3.0 KiB
PowerShell
66 lines
3.0 KiB
PowerShell
# Copyright (C) 2020 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 installs msys2
|
|
|
|
$version = "20240113"
|
|
$prog = "msys2"
|
|
$arch = "x86_64"
|
|
$sha1 = "b46c08fd901da0fdba1dc30422a322766d7d03c6"
|
|
$sha1_prebuilt = "29d16a81de4a570c41f92491e20b5554a1baab8f"
|
|
$folder = "msys64"
|
|
|
|
$package_prebuilt = $folder + "_" + $version + "_prebuilt_v2.7z"
|
|
$package = $prog + "-base-" + $arch + "-" + $version + ".tar.xz"
|
|
|
|
$url_cache_prebuilt = "\\ci-files01-hki.ci.qt.io\provisioning\windows\$package_prebuilt"
|
|
$url_cache = "https://ci-files01-hki.ci.qt.io/input/windows/$package"
|
|
$url_official = "http://repo.msys2.org/distrib/$arch/$package"
|
|
$TargetLocation = "C:\Utils"
|
|
|
|
$required_packages = @("perl")
|
|
$required_packages += Get-Content "$PSScriptRoot\..\windows\ffmpeg_required_msys_packages.txt"
|
|
|
|
if ((Test-Path $url_cache_prebuilt)) {
|
|
$PackagePath = "C:\Windows\Temp\$package_prebuilt"
|
|
Download $url_cache_prebuilt $url_cache_prebuilt $PackagePath
|
|
Verify-Checksum $PackagePath $sha1_prebuilt
|
|
Extract-7Zip $PackagePath $TargetLocation
|
|
} else {
|
|
$PackagePath = "C:\Windows\Temp\$package"
|
|
Download $url_official $url_cache $PackagePath
|
|
Verify-Checksum $PackagePath $sha1
|
|
Extract-tar_gz $PackagePath $TargetLocation
|
|
$msys = "$TargetLocation\$folder\msys2_shell.cmd"
|
|
|
|
# install perl make and yasm
|
|
# Run these without 'Run-Executable' function. When using the function the gpg-agent will lock the needed tmp*.tmp file.
|
|
$required_packages_string = $required_packages -join ' '
|
|
cmd /c "$msys `"-l`" `"-c`" `"rm -rf /etc/pacman.d/gnupg;pacman-key --init;pacman-key --populate msys2;pacman-key --refresh;pacman -S --noconfirm $required_packages_string`""
|
|
Start-Sleep -s 60
|
|
cmd /c "$msys `"-l`" `"-c`" `"echo y | cpan -i Text::Template Test::More`""
|
|
|
|
# Sometimes gpg-agent won't get killed after the installation process. If that happens the provisioning will won't continue and it will hang until timeout. So we need make sure it will be killed.
|
|
# Let's sleep for awhile and wait that msys installation is finished. Otherwise the installation might start up gpg-agent or dirmngr after the script has passed the killing process.
|
|
Start-Sleep -s 360
|
|
if (Get-Process -Name "gpg-agent" -ErrorAction SilentlyContinue) { Stop-Process -Force -Name gpg-agent }
|
|
if (Get-Process -Name "dirmngr" -ErrorAction SilentlyContinue) { Stop-Process -Force -Name dirmngr }
|
|
}
|
|
|
|
$msys = "C:\Utils\msys64\usr\bin\bash"
|
|
# Confirm that we have the correct packages installed, in case prebuilt MSYS
|
|
# binaries are missing them.
|
|
$installed = & "$msys" -lc "pacman -Qq"
|
|
$installedSet = $installed | Sort-Object -Unique
|
|
$missing_packages = $required_packages | Where-Object { $_ -notin $installedSet }
|
|
if ($missing_packages.Count -ne 0) {
|
|
throw "Missing MSYS packages: $($missing_packages -join ' ')"
|
|
}
|
|
|
|
Write-Host "Cleaning $PackagePath.."
|
|
Remove "$PackagePath"
|
|
|
|
Write-Output "msys2 = $version" >> ~\versions.txt
|