如何将参数传递给另一个jenkins构建步骤

时间:2013-09-18 10:42:09

标签: ssh jenkins continuous-integration

在Jenkins工作中,我需要在jenkins机器上执行shell。我从那里使用Execute shell步骤获得值,这必须在另一个步骤Execute shell script on remote host using ssh中使用。我无法找到传递这个价值的方法......

这是我的jenkins工作配置: enter image description here

我感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

构成脚本的文件内容:

echo "VERSION=`/data/...`"> env.properties

属性文件的路径:

env.properties

使用ssh的shell脚本:

echo"... $VERSION"

这样的东西适用于构建,也许这里也有效。