0216278652
- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.20079.8
107 lines
No EOL
5 KiB
PowerShell
107 lines
No EOL
5 KiB
PowerShell
Param(
|
|
[string] $SourceDirectory=$env:BUILD_SOURCESDIRECTORY,
|
|
[string] $CoreRootDirectory,
|
|
[string] $BaselineCoreRootDirectory,
|
|
[string] $Architecture="x64",
|
|
[string] $Framework="netcoreapp5.0",
|
|
[string] $CompilationMode="Tiered",
|
|
[string] $Repository=$env:BUILD_REPOSITORY_NAME,
|
|
[string] $Branch=$env:BUILD_SOURCEBRANCH,
|
|
[string] $CommitSha=$env:BUILD_SOURCEVERSION,
|
|
[string] $BuildNumber=$env:BUILD_BUILDNUMBER,
|
|
[string] $RunCategories="Libraries Runtime",
|
|
[string] $Csproj="src\benchmarks\micro\MicroBenchmarks.csproj",
|
|
[string] $Kind="micro",
|
|
[switch] $Internal,
|
|
[switch] $Compare,
|
|
[string] $Configurations="CompilationMode=$CompilationMode"
|
|
)
|
|
|
|
$RunFromPerformanceRepo = ($Repository -eq "dotnet/performance") -or ($Repository -eq "dotnet-performance")
|
|
$UseCoreRun = ($CoreRootDirectory -ne [string]::Empty)
|
|
$UseBaselineCoreRun = ($BaselineCoreRootDirectory -ne [string]::Empty)
|
|
|
|
$PayloadDirectory = (Join-Path $SourceDirectory "Payload")
|
|
$PerformanceDirectory = (Join-Path $PayloadDirectory "performance")
|
|
$WorkItemDirectory = (Join-Path $SourceDirectory "workitem")
|
|
$ExtraBenchmarkDotNetArguments = "--iterationCount 1 --warmupCount 0 --invocationCount 1 --unrollFactor 1 --strategy ColdStart --stopOnFirstError true"
|
|
$Creator = $env:BUILD_DEFINITIONNAME
|
|
$PerfLabArguments = ""
|
|
$HelixSourcePrefix = "pr"
|
|
|
|
$Queue = "Windows.10.Amd64.ClientRS4.DevEx.15.8.Open"
|
|
|
|
if ($Framework.StartsWith("netcoreapp")) {
|
|
$Queue = "Windows.10.Amd64.ClientRS5.Open"
|
|
}
|
|
|
|
if ($Compare) {
|
|
$Queue = "Windows.10.Amd64.19H1.Tiger.Perf.Open"
|
|
$PerfLabArguments = ""
|
|
$ExtraBenchmarkDotNetArguments = ""
|
|
}
|
|
|
|
if ($Internal) {
|
|
$Queue = "Windows.10.Amd64.19H1.Tiger.Perf"
|
|
$PerfLabArguments = "--upload-to-perflab-container"
|
|
$ExtraBenchmarkDotNetArguments = ""
|
|
$Creator = ""
|
|
$HelixSourcePrefix = "official"
|
|
}
|
|
|
|
# FIX ME: This is a workaround until we get this from the actual pipeline
|
|
$CommonSetupArguments="--channel master --queue $Queue --build-number $BuildNumber --build-configs $Configurations"
|
|
$SetupArguments = "--repository https://github.com/$Repository --branch $Branch --get-perf-hash --commit-sha $CommitSha $CommonSetupArguments"
|
|
|
|
if ($RunFromPerformanceRepo) {
|
|
$SetupArguments = "--perf-hash $CommitSha $CommonSetupArguments"
|
|
|
|
robocopy $SourceDirectory $PerformanceDirectory /E /XD $PayloadDirectory $SourceDirectory\artifacts $SourceDirectory\.git
|
|
}
|
|
else {
|
|
git clone --branch master --depth 1 --quiet https://github.com/dotnet/performance $PerformanceDirectory
|
|
}
|
|
|
|
if ($UseCoreRun) {
|
|
$NewCoreRoot = (Join-Path $PayloadDirectory "Core_Root")
|
|
Move-Item -Path $CoreRootDirectory -Destination $NewCoreRoot
|
|
}
|
|
if ($UseBaselineCoreRun) {
|
|
$NewBaselineCoreRoot = (Join-Path $PayloadDirectory "Baseline_Core_Root")
|
|
Move-Item -Path $BaselineCoreRootDirectory -Destination $NewBaselineCoreRoot
|
|
}
|
|
|
|
$DocsDir = (Join-Path $PerformanceDirectory "docs")
|
|
robocopy $DocsDir $WorkItemDirectory
|
|
|
|
# Set variables that we will need to have in future steps
|
|
$ci = $true
|
|
|
|
. "$PSScriptRoot\..\pipeline-logging-functions.ps1"
|
|
|
|
# Directories
|
|
Write-PipelineSetVariable -Name 'PayloadDirectory' -Value "$PayloadDirectory" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'PerformanceDirectory' -Value "$PerformanceDirectory" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'WorkItemDirectory' -Value "$WorkItemDirectory" -IsMultiJobVariable $false
|
|
|
|
# Script Arguments
|
|
Write-PipelineSetVariable -Name 'Python' -Value "py -3" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'ExtraBenchmarkDotNetArguments' -Value "$ExtraBenchmarkDotNetArguments" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'SetupArguments' -Value "$SetupArguments" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'PerfLabArguments' -Value "$PerfLabArguments" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'BDNCategories' -Value "$RunCategories" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'TargetCsproj' -Value "$Csproj" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'Kind' -Value "$Kind" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'Architecture' -Value "$Architecture" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'UseCoreRun' -Value "$UseCoreRun" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'UseBaselineCoreRun' -Value "$UseBaselineCoreRun" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'RunFromPerfRepo' -Value "$RunFromPerformanceRepo" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'Compare' -Value "$Compare" -IsMultiJobVariable $false
|
|
|
|
# Helix Arguments
|
|
Write-PipelineSetVariable -Name 'Creator' -Value "$Creator" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'Queue' -Value "$Queue" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name 'HelixSourcePrefix' -Value "$HelixSourcePrefix" -IsMultiJobVariable $false
|
|
Write-PipelineSetVariable -Name '_BuildConfig' -Value "$Architecture.$Kind.$Framework" -IsMultiJobVariable $false
|
|
|
|
exit 0 |