File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
tools/devops/automation/scripts Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -530,7 +530,7 @@ function New-ParallelTestsResults {
530
530
$botKey = $outputs.Keys | Where-Object { $_.StartsWith ($jobName + " ." ) -and $_.EndsWith (" ." + " TESTS_BOT" ) }
531
531
$platformKey = $outputs.Keys | Where-Object { $_.StartsWith ($jobName + " ." ) -and $_.EndsWith (" ." + " TESTS_PLATFORM" ) }
532
532
$attemptKey = $outputs.Keys | Where-Object { $_.StartsWith ($jobName + " ." ) -and $_.EndsWith (" ." + " TESTS_ATTEMPT" ) }
533
- $title = $outputs.Keys | Where-Object { $_.StartsWith ($jobName + " ." ) -and $_.EndsWith (" ." + " LABEL_WITH_PLATFORM " ) }
533
+ $title = $outputs.Keys | Where-Object { $_.StartsWith ($jobName + " ." ) -and $_.EndsWith (" ." + " TESTS_TITLE " ) }
534
534
Write-Host " Keys for Label='$label ', Title='$title ' and JobName='$jobName ': StatusKey=$statusKey BotKey=$botKey PlatformKey=$platformKey AttemptKey=$attemptKey "
535
535
$status = if ($statusKey -eq $null ) { " NotFound" } else { $outputs [$statusKey ] }
536
536
$bot = if ($botKey -eq $null ) { " NotFound" } else { $outputs [$botKey ] }
Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ Write-Host "##vso[task.setvariable variable=TESTS_BOT;isOutput=true]$($Env:AGENT
4
4
Write-Host " ##vso[task.setvariable variable=TESTS_LABEL;isOutput=true]$ ( $Env: TESTS_LABEL ) "
5
5
Write-Host " ##vso[task.setvariable variable=TESTS_PLATFORM;isOutput=true]$ ( $Env: TESTS_PLATFORM ) "
6
6
Write-Host " ##vso[task.setvariable variable=TESTS_ATTEMPT;isOutput=true]$ ( $Env: SYSTEM_JOBATTEMPT ) "
7
- Write-Host " ##vso[task.setvariable variable=LABEL_WITH_PLATFORM ;isOutput=true]$ ( $Env: LABEL_WITH_PLATFORM ) "
7
+ Write-Host " ##vso[task.setvariable variable=TESTS_TITLE ;isOutput=true]$ ( $Env: LABEL_WITH_PLATFORM ) "
You can’t perform that action at this time.
0 commit comments