3

現在のワークスペースのファイルをパラメータとしてビルド ジョブに渡す方法は次のとおりです。

build job: 'other-project', parameters: [[$class: 'FileParameterValue', ????]]
4

3 に答える 3

2

ファイルのフルパスを渡すことができます。

node('master') {
  //Read the workspace path
  String path = pwd();
  String pathFile = "${path}/exampleDir/fileExample.ext";
  //Do whatever you wish with the file path 
}
于 2016-05-18T14:36:59.943 に答える