gpt4 book ai didi

azure-devops - 引发警告时更改 Azure DevOps 管道构建状态

转载 作者:行者123 更新时间:2023-12-04 12:35:33 25 4
gpt4 key购买 nike

我们有一个 Azure DevOps 管道,它使用 Azure DevOps server 2019 的自托管 Windows 代理。该管道运行我们的前端测试没有任何问题。但是,有时我们的 linting 步骤会发现它作为警告抛出的问题(例如未使用的变量)。这是我们希望它做的,但问题是这些警告没有被提升。因此,查看它们的唯一方法是查看构建执行。

我们可以通过向 linting 命令添加 vso 格式化程序来解决这个问题:npm run nx run-many -- --target="lint"--all --skip-nx-cache=true - -parallel --format=vso。所以现在警告是这样抛出的:

Warning screenshot

如绿框所示,警告显示正常。但是,在红色圆圈中,构建、作业和 linting 任务的状态为成功。有没有办法可以将此构建、作业和任务标记为警告,以便我们知道进一步查看?感谢您的帮助,如果我可以提供更多信息,请告诉我。

最佳答案

您可以在管道末尾添加一个powershell任务,然后运行Rest API(Timeline - Get)遍历上一个任务中的警告消息。最后,您可以使用 logging command设置管道状态

这是 PowerShell 示例:

$token = "PAT"

$url="GET https://{instance}/{collection}/{project}/_apis/build/builds/$(build.buildid)/timeline?api-version=5.0"

$token = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes(":$($token)"))

$count = 0

$response = Invoke-RestMethod -Uri $url -Headers @{Authorization = "Basic $token"} -Method Get -ContentType application/json

ForEach( $issues in $response.records.issues )
{
if($issues.type -eq "warning")
{
echo $issues.Message
$count ++
}

}

echo $count

if($count -ne 0 )
{

Write-Host "##vso[task.complete result=SucceededWithIssues;]"

}

结果:

enter image description here

关于azure-devops - 引发警告时更改 Azure DevOps 管道构建状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65428090/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com