如何要求调度作业?
How to demand schedule Job?
我已经 UI
定义了 build pipeline
两个代理作业:
我想demand that the second one will run only on schedule跑步。
如何添加这个需求?
您可以将 a custom condition 添加到作业中:
and(succeeded(), eq(variables['Build.Reason'], 'Schedule'))
我已经 UI
定义了 build pipeline
两个代理作业:
我想demand that the second one will run only on schedule跑步。
如何添加这个需求?
您可以将 a custom condition 添加到作业中:
and(succeeded(), eq(variables['Build.Reason'], 'Schedule'))