问题描述
我正在使用AzureDevops发布管道来计划SSIS作业。 作业有多个步骤,如果作业由于任何原因失败,则发布管道仍将执行并显示成功消息。如何捕获作业失败错误并停止提供失败消息的发布管道。 Azuredevops和powershell脚本的新功能。
解决方法
在Azuredevops发布管道中使用Powershell脚本执行SSIS作业
要解决此问题,您可以尝试检查是否选中了该复选框 继续执行Powershell任务的错误:
如果您使用的是YAML,请尝试在Powershell任务中删除continueOnError: true
。
- task: string # reference to a task and version,e.g. "VSBuild@1"
condition: expression # see below
continueOnError: boolean # 'true' if future steps should run even if this step fails; defaults to 'false'
如果这不能解决您的问题,请共享配置并生成Powershell任务的日志。