电控指挥官-设置一个属性 based on the status of a step
Electric commander - Set a property based on the status of the status of a step
我有一个 ecloud 程序,其中只有几个步骤。我想根据步骤完成后的状态设置 属性 的值。
例如
程序 P1
有步骤
S1 - Runs a command
S11 - Set a property value based on the status of S1
S2 - Runs a command
S12 - Set a property value based on the status of S2
感谢任何指点。
如果我可以在同一步骤中设置 S1 和 S2 中的 属性 值,那么我不需要 S11 和 S12
我实现这一点的方法是检查 S11 中步骤 S1 的结果
S11 将有一个 运行 条件 $[/javascript ('$[/myJob/jobSteps/S1/outcome]' == 'success')]
并且在 S11 命令中我们可以设置 属性 ectool setProperty /myProject/TestProperties/S1 success
我有一个 ecloud 程序,其中只有几个步骤。我想根据步骤完成后的状态设置 属性 的值。 例如 程序 P1 有步骤
S1 - Runs a command
S11 - Set a property value based on the status of S1
S2 - Runs a command
S12 - Set a property value based on the status of S2
感谢任何指点。 如果我可以在同一步骤中设置 S1 和 S2 中的 属性 值,那么我不需要 S11 和 S12
我实现这一点的方法是检查 S11 中步骤 S1 的结果
S11 将有一个 运行 条件 $[/javascript ('$[/myJob/jobSteps/S1/outcome]' == 'success')]
并且在 S11 命令中我们可以设置 属性 ectool setProperty /myProject/TestProperties/S1 success