mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-01 19:36:04 +08:00
MinGW packages will be upgraded in another patch. Task-number: QTBUG-61728 Change-Id: Ie6a1996b7850282a7cdcbe5ceba61f1ce473cf69 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
63 lines
1.8 KiB
PowerShell
63 lines
1.8 KiB
PowerShell
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
$scriptsPath = "C:\Python27\Scripts"
|
|
|
|
& "$scriptsPath\pip.exe" install --upgrade conan==0.24.0
|
|
|
|
# Use Qt Project repository by default
|
|
& "$scriptsPath\conan.exe" remote add qtproject https://api.bintray.com/conan/qtproject/conan --insert
|
|
|
|
[Environment]::SetEnvironmentVariable("CI_CONAN_BUILDINFO_DIR", "C:\Utils\conanbuildinfos", "Machine")
|
|
|
|
function Start-Process-Logged
|
|
{
|
|
Write-Host "Start-Process", $args
|
|
Start-Process @args
|
|
}
|
|
|
|
function Run-Conan-Install
|
|
{
|
|
Param (
|
|
[string]$ConanfilesDir,
|
|
[string]$BuildinfoDir,
|
|
[string]$Arch,
|
|
[string]$Compiler,
|
|
[string]$CompilerVersion,
|
|
[string]$CompilerRuntime,
|
|
[string]$CompilerLibcxx
|
|
)
|
|
|
|
if ($CompilerRuntime) {
|
|
$extraArgs = "-s compiler.runtime=$($CompilerRuntime)"
|
|
}
|
|
|
|
if ($CompilerLibcxx) {
|
|
$extraArgs = "-s compiler.libcxx=$($CompilerLibcxx)"
|
|
}
|
|
|
|
$manifestsDir = "$PSScriptRoot\conan_manifests"
|
|
|
|
Get-ChildItem -Path "$ConanfilesDir\*.txt" |
|
|
ForEach-Object {
|
|
$conanfile = $_.FullName
|
|
$outpwd = "C:\Utils\conanbuildinfos\$($BuildinfoDir)\$($_.BaseName)"
|
|
New-Item $outpwd -Type directory -Force
|
|
|
|
$process = Start-Process-Logged `
|
|
"$scriptsPath\conan.exe" `
|
|
-WorkingDirectory $outpwd `
|
|
-ArgumentList "install -f $conanfile --no-imports --verify $manifestsDir", `
|
|
'-s', ('compiler="' + $Compiler + '"'), `
|
|
"-s os=Windows -s arch=$Arch -s compiler.version=$CompilerVersion $extraArgs" `
|
|
-NoNewWindow -Wait -Verbose `
|
|
-PassThru # Return process object
|
|
|
|
if ($process.ExitCode -ne 0) {
|
|
Write-Host "conan exited with code $($process.ExitCode)"
|
|
Exit(1)
|
|
}
|
|
|
|
Copy-Item -Path $conanfile -Destination "$outpwd\conanfile.txt"
|
|
}
|
|
}
|