一尘不染

如何使用Jenkins中的Pipeline插件在Jenkinsfile中调用Java函数

jenkins

我在詹金斯中使用管道插件。我Jenkinsfile有,numToEcho =1,2,3,4但我想致电Test.myNumbers()以获取值列表。

  1. 如何在Jenkinsfile中调用myNumbers()Java函数?
  2. 还是我需要有一个单独的Groovy脚本文件,然后将该文件放置在具有Test类的java jar中?

我的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);
 }
}

阅读 738

收藏
2020-07-25

共1个答案

一尘不染

您可以将逻辑编写在Groovy文件中,该文件可以保存在Git存储库,管道共享库或其他地方。

例如,如果您utils.groovy的存储库中有文件:

List<Integer> myNumbers() {
  return [1, 2, 3, 4, 5]
}
return this

在您的中Jenkinsfile,您可以通过以下load步骤使用它:

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`…
}
2020-07-25