将脚本输出值从詹金斯输出到文件

时间:2019-11-28 16:43:51

标签: jenkins

我的詹金斯管道正在工作并调用Ps脚本。

    env.output= powershell(returnStdout: true, script: '.\\scripts\\script.ps1 -target_servername')

我想将env.output保存到工作区目录中的自动生成的文件中。

    so like %workspace%\logs\%jobname%_%job_no%.log

我想在文件上附加细节。

1 个答案:

答案 0 :(得分:0)

您使用Powershell时遇到了麻烦。因此,我认为Add-Content Commandlet是您的理想工具。只需切换到多行powershell脚本即可。