使用 job-dsl-plugin 我正在尝试编写大量以前手动配置的 Jenkins 作业的配置脚本。
这些工作的一种形式有多个步骤,包括几个使用 XShell 插件的步骤,job-dsl 不直接支持。但是,我应该能够通过使用自定义“配置”块来解决这个问题。
使用http://job-dsl.herokuapp.com/上的“工作 DSL 游乐场”,我已经得到了:
job {
name 'my-job'
jdk('JDK-17')
steps {
configure { node ->
node / builders {
'hudson.plugins.xshell.XShellBuilder'(plugin: 'xshell@0.9') {
commandLine('run-me-as-the-first-build-step')
executeFromWorkingDir('true')
}
}
}
maven {
mavenInstallation('Default')
goals('clean')
goals('verify')
property('prop1', 'value1')
property('user.timezone', 'UTC')
mavenOpts('--batch-mode')
}
maven {
mavenInstallation('Default')
goals('deploy')
property('prop2', 'value2')
property('user.timezone', 'UTC')
mavenOpts('--batch-mode')
}
shell('shell-task')
configure { node ->
node / builders {
'hudson.plugins.xshell.XShellBuilder'(plugin: 'xshell@0.9') {
commandLine('run-me-as-the-last-build-step')
executeFromWorkingDir('true')
}
}
}
}
}
如果我只包含第一个配置块,我会在第一步位置获得第一个命令。但是随着第二个(最后一个)配置块的出现,"node / builders"
再次匹配第一个元素并覆盖它,run-me-as-the-last-step
第一个也是唯一的 XShellBuilder 也是如此。我寻求的输出看起来像:
<project>
...
<builders>
<hudson.plugins.xshell.XShellBuilder plugin='xshell@0.9'>
<commandLine>run-me-as-the-first-build-step</commandLine>
<executeFromWorkingDir>true</executeFromWorkingDir>
</hudson.plugins.xshell.XShellBuilder>
<hudson.tasks.Maven>
<targets>clean verify</targets>
<properties>prop1=value1
user.timezone=UTC</properties>
<mavenName>Default</mavenName>
<jvmOptions>--batch-mode</jvmOptions>
<usePrivateRepository>false</usePrivateRepository>
</hudson.tasks.Maven>
<hudson.tasks.Maven>
<targets>deploy</targets>
<properties>prop2=value2
user.timezone=UTC</properties>
<mavenName>Default</mavenName>
<jvmOptions>--batch-mode</jvmOptions>
<usePrivateRepository>false</usePrivateRepository>
</hudson.tasks.Maven>
<hudson.tasks.Shell>
<command>shell-task</command>
</hudson.tasks.Shell>
<hudson.plugins.xshell.XShellBuilder plugin='xshell@0.9'>
<commandLine>run-me-as-the-last-build-step</commandLine>
<executeFromWorkingDir>true</executeFromWorkingDir>
</hudson.plugins.xshell.XShellBuilder>
</builders>
...
</project>
我无法弄清楚将第二个块插入为“最后一个孩子”的 Groovy XML / Job-DSL 语法;Job-DSL 或 Groovy XMLParser 专家能否给我一个关于如何匹配和插入到任意位置的指针的孩子<builders>
?
(我很感激我可以使用job(type:Maven)
,preBuildSteps
但postBuildSteps
实际上我还需要一些其他的东西,这是纯 maven 工作所排除的。)谢谢!