mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 11:09:02 +08:00
5c48bee451
* [vcpkg] Add experimental x-azblob binary provider * [vcpkg] Test azblob storage provider in CI * [vcpkg] Address some CR comments from #13639 * [vcpkg] Fixup azure-pipelines * [vcpkg] Fix regression where the downloaded package is purged before decompressing * [vcpkg] Further refactor vcpkg::Downloads * [vcpkg] Enable OSX for x-azblob testing * [vcpkg] Reduce diff against master * [vcpkg] Extract Downloads::details::split_uri_view * [vcpkg] Address PR comments * [vcpkg] Add testing and metrics for x-azblob * [vcpkg] Add docs for x-azblob This includes a note that it is currently experimental * [vcpkg] Address CR comments * [vcpkg] Revert pipeline changes except OSX to minimize disruption Co-authored-by: Robert Schumacher <roschuma@microsoft.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
130 lines
4.6 KiB
PowerShell
Executable File
130 lines
4.6 KiB
PowerShell
Executable File
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
<#
|
|
.SYNOPSIS
|
|
Runs the 'Test Modified Ports' part of the vcpkg CI system for all platforms.
|
|
|
|
.PARAMETER Triplet
|
|
The triplet to test.
|
|
|
|
.PARAMETER WorkingRoot
|
|
The location used as scratch space for 'installed', 'packages', and 'buildtrees' vcpkg directories.
|
|
|
|
.PARAMETER ArtifactStagingDirectory
|
|
The Azure Pipelines artifacts directory. If not supplied, defaults to the current directory.
|
|
|
|
.PARAMETER ArchivesRoot
|
|
Equivalent to '-BinarySourceStub "files,$ArchivesRoot"'
|
|
|
|
.PARAMETER BinarySourceStub
|
|
The type and parameters of the binary source. Shared across runs of this script. If
|
|
this parameter is not set, binary caching will not be used. Example: "files,W:\"
|
|
|
|
.PARAMETER BuildReason
|
|
The reason Azure Pipelines is running this script (controls in which mode Binary Caching is used).
|
|
If ArchivesRoot is not set, this parameter has no effect. If ArchivesRoot is set and this is not,
|
|
binary caching will default to read-write mode.
|
|
#>
|
|
|
|
[CmdletBinding(DefaultParameterSetName="ArchivesRoot")]
|
|
Param(
|
|
[Parameter(Mandatory = $true)]
|
|
[ValidateNotNullOrEmpty()]
|
|
[string]$Triplet,
|
|
[Parameter(Mandatory = $true)]
|
|
[ValidateNotNullOrEmpty()]
|
|
$WorkingRoot,
|
|
[ValidateNotNullOrEmpty()]
|
|
$ArtifactStagingDirectory = '.',
|
|
[Parameter(ParameterSetName='ArchivesRoot')]
|
|
$ArchivesRoot = $null,
|
|
[Parameter(ParameterSetName='BinarySourceStub')]
|
|
$BinarySourceStub = $null,
|
|
$BuildReason = $null
|
|
)
|
|
|
|
if (-Not (Test-Path "triplets/$Triplet.cmake")) {
|
|
Write-Error "Incorrect triplet '$Triplet', please supply a valid triplet."
|
|
throw
|
|
}
|
|
|
|
$env:VCPKG_DOWNLOADS = Join-Path $WorkingRoot 'downloads'
|
|
$buildtreesRoot = Join-Path $WorkingRoot 'buildtrees'
|
|
$installRoot = Join-Path $WorkingRoot 'installed'
|
|
$packagesRoot = Join-Path $WorkingRoot 'packages'
|
|
|
|
$usingBinaryCaching = -Not ([string]::IsNullOrWhiteSpace($ArchivesRoot)) -Or -Not ([string]::IsNullOrWhiteSpace($BinarySourceStub))
|
|
$commonArgs = @()
|
|
if ($usingBinaryCaching) {
|
|
$commonArgs += @('--binarycaching')
|
|
} else {
|
|
$commonArgs += @('--no-binarycaching')
|
|
}
|
|
|
|
$commonArgs += @(
|
|
"--x-buildtrees-root=$buildtreesRoot",
|
|
"--x-install-root=$installRoot",
|
|
"--x-packages-root=$packagesRoot",
|
|
"--overlay-ports=scripts/test_ports"
|
|
)
|
|
|
|
$skipFailures = $false
|
|
if ($usingBinaryCaching) {
|
|
$binaryCachingMode = 'readwrite'
|
|
if ([string]::IsNullOrWhiteSpace($BuildReason)) {
|
|
Write-Host 'Build reason not specified, defaulting to using binary caching in read write mode.'
|
|
}
|
|
elseif ($BuildReason -eq 'PullRequest') {
|
|
Write-Host 'Build reason was Pull Request, using binary caching in read write mode, skipping failures.'
|
|
$skipFailures = $true
|
|
}
|
|
else {
|
|
Write-Host "Build reason was $BuildReason, using binary caching in write only mode."
|
|
$binaryCachingMode = 'write'
|
|
}
|
|
if ([string]::IsNullOrWhiteSpace($ArchivesRoot)) {
|
|
$commonArgs += @("--binarysource=clear;$BinarySourceStub,$binaryCachingMode")
|
|
}
|
|
else {
|
|
$commonArgs += @("--binarysource=clear;files,$ArchivesRoot,$binaryCachingMode")
|
|
}
|
|
}
|
|
|
|
if ($Triplet -eq 'x64-linux') {
|
|
$env:HOME = '/home/agent'
|
|
$executableExtension = [string]::Empty
|
|
}
|
|
elseif ($Triplet -eq 'x64-osx') {
|
|
$executableExtension = [string]::Empty
|
|
}
|
|
else {
|
|
$executableExtension = '.exe'
|
|
}
|
|
|
|
$xmlResults = Join-Path $ArtifactStagingDirectory 'xml-results'
|
|
mkdir $xmlResults
|
|
$xmlFile = Join-Path $xmlResults "$Triplet.xml"
|
|
|
|
$failureLogs = Join-Path $ArtifactStagingDirectory 'failure-logs'
|
|
|
|
& "./vcpkg$executableExtension" x-ci-clean @commonArgs
|
|
$skipList = . "$PSScriptRoot/generate-skip-list.ps1" `
|
|
-Triplet $Triplet `
|
|
-BaselineFile "$PSScriptRoot/../ci.baseline.txt" `
|
|
-SkipFailures:$skipFailures
|
|
|
|
# WORKAROUND: the x86-windows flavors of these are needed for all cross-compilation, but they are not auto-installed.
|
|
# Install them so the CI succeeds:
|
|
if ($Triplet -in @('x64-uwp', 'arm64-windows', 'arm-uwp')) {
|
|
.\vcpkg.exe install protobuf:x86-windows boost-build:x86-windows sqlite3:x86-windows yasm-tool:x86-windows ampl-mp:x86-windows @commonArgs
|
|
} elseif ($Triplet -in @('x64-windows', 'x64-windows-static')) {
|
|
.\vcpkg.exe install yasm-tool:x86-windows @commonArgs
|
|
}
|
|
|
|
& "./vcpkg$executableExtension" ci $Triplet --x-xunit=$xmlFile --exclude=$skipList --failure-logs=$failureLogs @commonArgs
|
|
& "$PSScriptRoot/analyze-test-results.ps1" -logDir $xmlResults `
|
|
-triplet $Triplet `
|
|
-baselineFile .\scripts\ci.baseline.txt
|