我在jenkins中使用管道插件。我的Jenkinsfile
已numToEcho =1,2,3,4
,但我想致电Test.myNumbers()
以获取值列表。
My Jenkinsfile:
def numToEcho = [1,2,3,4]
def stepsForParallel = [:]
for (int i = 0; i < numToEcho.size(); i++) {
def s = numToEcho.get(i)
def stepName = "echoing ${s}"
stepsForParallel[stepName] = transformIntoStep(s)
}
parallel stepsForParallel
def transformIntoStep(inputNum) {
return {
node {
echo inputNum
}
}
}
import com.sample.pipeline.jenkins
public class Test{
public ArrayList<Integer> myNumbers() {
ArrayList<Integer> numbers = new ArrayList<Integer>();
numbers.add(5);
numbers.add(11);
numbers.add(3);
return(numbers);
}
}
答案 0 :(得分:2)
您可以在Groovy文件中编写逻辑,您可以将其保存在Git存储库中,或Pipeline Shared Library或其他地方。
例如,如果您的存储库中有文件utils.groovy
:
List<Integer> myNumbers() {
return [1, 2, 3, 4, 5]
}
return this
在Jenkinsfile
中,您可以通过load
step:
def utils
node {
// Check out repository with utils.groovy
git 'https://github.com/…/my-repo.git'
// Load definitions from repo
utils = load 'utils.groovy'
}
// Execute utility method
def numbers = utils.myNumbers()
// Do stuff with `numbers`…
或者,您可以查看Java代码并运行它,并捕获输出。然后,您可以将其解析为列表,或者稍后在管道中需要的任何数据结构。例如:
node {
// Check out and build the Java tool
git 'https://github.com/…/some-java-tools.git'
sh './gradlew assemble'
// Run the compiled Java tool
def output = sh script: 'java -jar build/output/my-tool.jar', returnStdout: true
// Do some parsing in Groovy to turn the output into a list
def numbers = parseOutput(output)
// Do stuff with `numbers`…
}