一尘不染

从Jenkins管道中的文件运行Powershell脚本

jenkins

我正在尝试从Jenkins管道中的文件运行Powershell脚本。

我已经阅读了本文,该文章显示了如何运行输入到管道中的Powershell脚本,但是我无法从文件中运行脚本。

我努力了:

powershell returnStatus: true, script: '-File build.ps1'

和各种组合,但无法弄清楚该如何做。


阅读 403

收藏
2020-07-25

共1个答案

一尘不染

很快就弄清楚了,该行应该已经阅读

powershell returnStatus: true, script: '.\\build.ps1'
2020-07-25