2020-06-26 07:36:28 +08:00
|
|
|
# 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.
|
|
|
|
|
2020-09-22 08:27:35 +08:00
|
|
|
.PARAMETER ArtifactStagingDirectory
|
2020-06-26 07:36:28 +08:00
|
|
|
The Azure Pipelines artifacts directory. If not supplied, defaults to the current directory.
|
|
|
|
|
2020-09-29 04:54:10 +08:00
|
|
|
.PARAMETER ArchivesRoot
|
|
|
|
The location where the binary caching archives are stored. Shared across runs of this script. If
|
|
|
|
this parameter is not set, binary caching will not be used.
|
|
|
|
|
2020-06-26 07:36:28 +08:00
|
|
|
.PARAMETER BuildReason
|
2020-09-29 04:54:10 +08:00
|
|
|
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.
|
2020-06-26 07:36:28 +08:00
|
|
|
#>
|
|
|
|
|
|
|
|
[CmdletBinding()]
|
|
|
|
Param(
|
2020-06-27 03:37:53 +08:00
|
|
|
[Parameter(Mandatory = $true)]
|
2020-06-26 07:36:28 +08:00
|
|
|
[ValidateNotNullOrEmpty()]
|
|
|
|
[string]$Triplet,
|
2020-06-27 03:37:53 +08:00
|
|
|
[Parameter(Mandatory = $true)]
|
2020-06-26 07:36:28 +08:00
|
|
|
[ValidateNotNullOrEmpty()]
|
|
|
|
$WorkingRoot,
|
|
|
|
[ValidateNotNullOrEmpty()]
|
2020-09-22 08:27:35 +08:00
|
|
|
$ArtifactStagingDirectory = '.',
|
2020-09-29 04:54:10 +08:00
|
|
|
$ArchivesRoot = $null,
|
2020-06-26 07:36:28 +08:00
|
|
|
$BuildReason = $null
|
|
|
|
)
|
|
|
|
|
|
|
|
if (-Not (Test-Path "triplets/$Triplet.cmake")) {
|
|
|
|
Write-Error "Incorrect triplet '$Triplet', please supply a valid triplet."
|
2020-07-02 01:53:10 +08:00
|
|
|
throw
|
2020-06-26 07:36:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
$env:VCPKG_DOWNLOADS = Join-Path $WorkingRoot 'downloads'
|
|
|
|
$buildtreesRoot = Join-Path $WorkingRoot 'buildtrees'
|
|
|
|
$installRoot = Join-Path $WorkingRoot 'installed'
|
|
|
|
$packagesRoot = Join-Path $WorkingRoot 'packages'
|
2020-09-29 04:54:10 +08:00
|
|
|
|
|
|
|
$usingBinaryCaching = -Not ([string]::IsNullOrWhiteSpace($ArchivesRoot))
|
|
|
|
$commonArgs = @()
|
|
|
|
if ($usingBinaryCaching) {
|
|
|
|
$commonArgs += @('--binarycaching')
|
|
|
|
} else {
|
|
|
|
$commonArgs += @('--no-binarycaching')
|
|
|
|
}
|
|
|
|
|
|
|
|
$commonArgs += @(
|
2020-06-26 07:36:28 +08:00
|
|
|
"--x-buildtrees-root=$buildtreesRoot",
|
|
|
|
"--x-install-root=$installRoot",
|
2020-08-01 07:48:52 +08:00
|
|
|
"--x-packages-root=$packagesRoot",
|
|
|
|
"--overlay-ports=scripts/test_ports"
|
2020-06-26 07:36:28 +08:00
|
|
|
)
|
|
|
|
|
2020-07-03 11:20:07 +08:00
|
|
|
$skipFailures = $false
|
2020-09-29 04:54:10 +08:00
|
|
|
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'
|
|
|
|
}
|
2020-06-26 07:36:28 +08:00
|
|
|
|
2020-09-29 04:54:10 +08:00
|
|
|
$commonArgs += @("--x-binarysource=clear;files,$ArchivesRoot,$binaryCachingMode")
|
|
|
|
}
|
2020-06-27 03:37:53 +08:00
|
|
|
|
2020-06-26 07:36:28 +08:00
|
|
|
if ($Triplet -eq 'x64-linux') {
|
|
|
|
$env:HOME = '/home/agent'
|
|
|
|
$executableExtension = [string]::Empty
|
2020-06-27 03:37:53 +08:00
|
|
|
}
|
|
|
|
elseif ($Triplet -eq 'x64-osx') {
|
2020-06-26 07:36:28 +08:00
|
|
|
$executableExtension = [string]::Empty
|
2020-06-27 03:37:53 +08:00
|
|
|
}
|
|
|
|
else {
|
2020-06-26 07:36:28 +08:00
|
|
|
$executableExtension = '.exe'
|
|
|
|
}
|
|
|
|
|
2020-09-22 08:27:35 +08:00
|
|
|
$xmlResults = Join-Path $ArtifactStagingDirectory 'xml-results'
|
2020-06-26 07:36:28 +08:00
|
|
|
mkdir $xmlResults
|
|
|
|
$xmlFile = Join-Path $xmlResults "$Triplet.xml"
|
|
|
|
|
2020-09-22 08:27:35 +08:00
|
|
|
$failureLogs = Join-Path $ArtifactStagingDirectory 'failure-logs'
|
2020-07-03 11:20:07 +08:00
|
|
|
|
2020-06-26 07:36:28 +08:00
|
|
|
& "./vcpkg$executableExtension" x-ci-clean @commonArgs
|
2020-07-03 11:20:07 +08:00
|
|
|
$skipList = . "$PSScriptRoot/generate-skip-list.ps1" `
|
|
|
|
-Triplet $Triplet `
|
|
|
|
-BaselineFile "$PSScriptRoot/../ci.baseline.txt" `
|
|
|
|
-SkipFailures:$skipFailures
|
2020-06-26 07:36:28 +08:00
|
|
|
|
|
|
|
# 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')) {
|
2020-11-13 04:55:11 +08:00
|
|
|
.\vcpkg.exe install protobuf:x86-windows boost-build:x86-windows sqlite3:x86-windows yasm-tool:x86-windows ampl-mp:x86-windows @commonArgs
|
2020-10-29 05:26:41 +08:00
|
|
|
} elseif ($Triplet -in @('x64-windows', 'x64-windows-static')) {
|
|
|
|
.\vcpkg.exe install yasm-tool:x86-windows @commonArgs
|
2020-06-26 07:36:28 +08:00
|
|
|
}
|
|
|
|
|
2020-07-03 11:20:07 +08:00
|
|
|
& "./vcpkg$executableExtension" ci $Triplet --x-xunit=$xmlFile --exclude=$skipList --failure-logs=$failureLogs @commonArgs
|
|
|
|
& "$PSScriptRoot/analyze-test-results.ps1" -logDir $xmlResults `
|
|
|
|
-triplet $Triplet `
|
2020-06-26 07:36:28 +08:00
|
|
|
-baselineFile .\scripts\ci.baseline.txt
|