所以我正在Jenkins中构建一个共享库,因为我们所有的应用程序都遵循相同的步骤,但是它们使用的Java版本不同。
当前,我有一个库文件vars/buildPipeline.groovy
,它使我们能够构建,测试和发布应用程序。但是,我希望能够更改在调用共享库的每个管道中使用的工具,如下所示:
// vars/buildPipeline.groovy
def call(def toolChoice = null) {
pipeline {
agent {
label 'master'
}
if (toolChoice != null) {
tool {
jdk: toolChoice
}
}
stages {
stage('Build and Unit test') {
steps {
...
}
}
stage('Publish to Nexus') {
steps {
...
}
}
}
}
}
我尝试创建类似于此(https://github.com/paspao/jenkins-lib/blob/master/src/org/paspao/sharedlib/JenkinsBuilder.groovy)的内容,但是为所有管道,阶段,阶段等创建方法并不理想。