gpt4 book ai didi

powershell - Azure DevOps 因警告而失败,且 'fail on standard error' 设置为 true

转载 作者:行者123 更新时间:2023-12-02 02:07:34 25 4
gpt4 key购买 nike

我在 Azure DevOps ci 管道上有一个内联 PowerShell 任务,需要忽略任何警告,但是,任何错误都会使任务失败并停止构建。

我最初将“标准错误失败”设置为 true,但由于所有错误和警告都写入 stderr,因此任何警告都会失败。

下面我尝试将“标准错误失败”设置为 false。尽管注意到错误并没有使任务失败。

sfdx partial:lsapp:build
if ($exitCode -ne 0)
{
Write-Output (\"[Error] Failing task since return code was {0} while expected 0.\" -f $exitCode)
}
[Environment]::Exit($exitCode)

任何帮助将不胜感激。

最佳答案

似乎 salesforce cli 向 stderr 写入警告。在这种情况下,您无法在执行 salesforce 命令的内联 PowerShell 任务中分离警告和错误。

但是,如果您想根据退出代码使管道失败,您仍然可以使用解决方法:将退出代码保存在管道变量中,并在具有 failOnStderr: true 的单独任务中对其进行评估> 如果需要的话会失败:

steps:
- task: PowerShell@2
inputs:
targetType: 'inline'
script: |
#sfdx partial:lsapp:build
$exitCode = 1 # Setting this for testing
Write-Host "##vso[task.setvariable variable=sfdxExitCode;]$exitCode"

- task: PowerShell@2
inputs:
targetType: 'inline'
script: |
$exitCode = $(sfdxExitCode)
if ($exitCode -ne 0)
{
Write-Error ("Failing task since return code was {0} while expected 0." -f $exitCode)
}
failOnStderr: true

关于powershell - Azure DevOps 因警告而失败,且 'fail on standard error' 设置为 true,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68200774/

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