Sync eng/common directory with azure-sdk-tools for PR 9389 (#31791)
Sync eng/common directory with azure-sdk-tools for PR https://github.com/Azure/azure-sdk-tools/pull/9389 See [eng/common workflow](https://github.com/Azure/azure-sdk-tools/blob/main/eng/common/README.md#workflow) Co-authored-by: Mike Harder <mharder@microsoft.com>
This commit is contained in:
Родитель
c2a8656e0f
Коммит
43142d22c2
|
@ -10,6 +10,26 @@ function LogInfo {
|
|||
Write-Host "$args"
|
||||
}
|
||||
|
||||
function LogNotice {
|
||||
if (Test-SupportsGitHubLogging) {
|
||||
Write-Host ("::notice::$args" -replace "`n", "%0D%0A")
|
||||
}
|
||||
else {
|
||||
# No equivalent for DevOps
|
||||
Write-Host "[Notice] $args"
|
||||
}
|
||||
}
|
||||
|
||||
function LogNoticeForFile($file, $noticeString) {
|
||||
if (Test-SupportsGitHubLogging) {
|
||||
Write-Host ("::notice file=$file,line=1,col=1::$noticeString" -replace "`n", "%0D%0A")
|
||||
}
|
||||
else {
|
||||
# No equivalent for DevOps
|
||||
Write-Host "[Notice in file $file] $noticeString"
|
||||
}
|
||||
}
|
||||
|
||||
function LogWarning {
|
||||
if (Test-SupportsDevOpsLogging) {
|
||||
Write-Host ("##vso[task.LogIssue type=warning;]$args" -replace "`n", "%0D%0A")
|
||||
|
|
Загрузка…
Ссылка в новой задаче