mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-25 00:15:11 +08:00
Keep conanfiles self-contained. "txt" generator is not going to be used by coin internally, drop it. Task-number: QTQAINFRA-998 Change-Id: I80ffb7342e07d8ef883bed6de77ac9646479f145 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
34 lines
1.2 KiB
PowerShell
34 lines
1.2 KiB
PowerShell
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
$installer = "c:\users\qt\downloads\conan-win_0_12_0.exe"
|
|
|
|
Download https://s3-eu-west-1.amazonaws.com/conanio-production/downloads/conan-win_0_12_0.exe http://ci-files01-hki.ci.local/input/conan/conan-win_0_12_0.exe $installer
|
|
Verify-Checksum $installer "719F30E6EED03149D75CDB28F80A7B873B43FF51"
|
|
& $installer /DIR=C:\Utils\Conan /VERYSILENT
|
|
|
|
function Run-Conan-Install
|
|
{
|
|
Param (
|
|
[string]$ConanfilesDir,
|
|
[string]$BuildinfoDir,
|
|
[string]$Arch,
|
|
[string]$Compiler,
|
|
[string]$CompilerVersion
|
|
)
|
|
|
|
Get-ChildItem -Path "$ConanfilesDir\*.txt" |
|
|
ForEach-Object {
|
|
$outpwd = "C:\Utils\conanbuildinfos\$($BuildinfoDir)\$($_.BaseName)"
|
|
New-Item $outpwd -Type directory -Force
|
|
Start-Process `
|
|
"C:\Utils\Conan\conan\conan.exe" `
|
|
-WorkingDirectory $outpwd `
|
|
-ArgumentList "install -i -f $($_.FullName)", `
|
|
'-s', ('compiler="' + $Compiler + '"'), `
|
|
"-s os=Windows -s arch=$($Arch) -s compiler.version=$($CompilerVersion)" `
|
|
-NoNewWindow -Wait
|
|
}
|
|
|
|
[Environment]::SetEnvironmentVariable("CI_CONAN_BUILDINFO_DIR", $BuildinfoDir, "Machine")
|
|
}
|