0

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

这是我的詹金斯工作配置: 在此处输入图像描述

我很感激任何帮助。

4

1 回答 1

1

包含脚本的文件的内容:

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

属性文件的路径:

env.properties

在使用 ssh 的 shell 脚本中:

echo"... $VERSION"

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

于 2013-09-18T10:51:58.810 回答