12

如何在 Jenkinsfile 中导入 Groovy 类?我尝试了几种方法,但都没有奏效。

这是我要导入的类:

Thing.groovy

class Thing {
    void doStuff() { ... }
}

这些是行不通的:

詹金斯文件-1

node {
    load "./Thing.groovy"

    def thing = new Thing()
}

詹金斯文件-2

import Thing

node {
    def thing = new Thing()
}

Jenkinsfile-3

node {
    evaluate(new File("./Thing.groovy"))

    def thing = new Thing()
}
4

1 回答 1

9

您可以通过加载命令返回该类的新实例并使用该对象调用“doStuff”

所以,你会在“Thing.groovy”中有这个

class Thing {
   def doStuff() { return "HI" }
}

return new Thing();

你会在你的 dsl 脚本中有这个:

node {
   def thing = load 'Thing.groovy'
   echo thing.doStuff()
}

哪个应该将“HI”打印到控制台输出。

这能满足你的要求吗?

于 2016-08-30T03:23:16.063 回答