Joh*_*ohn 34 jenkins jenkins-pipeline
我想在声明的Jenkins管道中的锁内运行多个阶段:
pipeline {
agent any
stages {
lock(resource: 'myResource') {
stage('Stage 1') {
steps {
echo "my first step"
}
}
stage('Stage 2') {
steps {
echo "my second step"
}
}
}
}
}
Run Code Online (Sandbox Code Playgroud)
我收到以下错误:
Started by user anonymous
org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
WorkflowScript: 10: Expected a stage @ line 10, column 9.
lock(resource: 'myResource') {
^
WorkflowScript: 10: Stage does not have a name @ line 10, column 9.
lock(resource: 'myResource') {
^
WorkflowScript: 10: Nothing to execute within stage "null" @ line 10, column 9.
lock(resource: 'myResource') {
^
3 errors
at org.codehaus.groovy.control.ErrorCollector.failIfErrors(ErrorCollector.java:310)
at org.codehaus.groovy.control.CompilationUnit.applyToPrimaryClassNodes(CompilationUnit.java:1085)
at org.codehaus.groovy.control.CompilationUnit.doPhaseOperation(CompilationUnit.java:603)
at org.codehaus.groovy.control.CompilationUnit.processPhaseOperations(CompilationUnit.java:581)
at org.codehaus.groovy.control.CompilationUnit.compile(CompilationUnit.java:558)
at groovy.lang.GroovyClassLoader.doParseClass(GroovyClassLoader.java:298)
at groovy.lang.GroovyClassLoader.parseClass(GroovyClassLoader.java:268)
at groovy.lang.GroovyShell.parseClass(GroovyShell.java:688)
at groovy.lang.GroovyShell.parse(GroovyShell.java:700)
at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.reparse(CpsGroovyShell.java:116)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.parseScript(CpsFlowExecution.java:430)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.start(CpsFlowExecution.java:393)
at org.jenkinsci.plugins.workflow.job.WorkflowRun.run(WorkflowRun.java:257)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:405)
Finished: FAILURE
Run Code Online (Sandbox Code Playgroud)
这有什么问题?该文件明确规定:
lock
也可用于将多个阶段包装到单个并发单元中
dol*_*phy 46
应该注意,您可以使用lock选项锁定管道中的所有阶段:
pipeline {
agent any
options {
lock resource: 'shared_resource_lock'
}
stages {
stage('will_already_be_locked') {
steps {
echo "I am locked before I enter the stage!"
}
}
stage('will_also_be_locked') {
steps {
echo "I am still locked!"
}
}
}
}
Run Code Online (Sandbox Code Playgroud)
Kea*_*eks 27
现在解决了这个问题,你可以通过在父级中对它们进行分组来锁定多个阶段,如下所示:
stage('Parent') {
options {
lock('something')
}
stages {
stage('one') {
...
}
stage('two') {
...
}
}
}
Run Code Online (Sandbox Code Playgroud)
(别忘了你需要Lockable Resources插件)
bur*_*ttk 17
问题在于,尽管声明性管道在技术上已于2016年9月在测试版中提供,但您引用的博客文章(从10月开始)是记录脚本化管道,而不是声明性的(它没有说明,所以我觉得你的痛).可锁定资源尚未作为声明性管道步骤进行烘焙,以便启用您正在寻找的功能.
你可以做:
pipeline {
agent { label 'docker' }
stages {
stage('one') {
steps {
lock('something') {
echo 'stage one'
}
}
}
}
}
Run Code Online (Sandbox Code Playgroud)
但你做不到:
pipeline {
agent { label 'docker' }
stages {
lock('something') {
stage('one') {
steps {
echo 'stage one'
}
}
stage('two') {
steps {
echo 'stage two'
}
}
}
}
}
Run Code Online (Sandbox Code Playgroud)
你做不到:
pipeline {
agent { label 'docker' }
stages {
stage('one') {
lock('something') {
steps {
echo 'stage one'
}
}
}
}
}
Run Code Online (Sandbox Code Playgroud)
您可以为此用例使用脚本化管道.
归档时间: |
|
查看次数: |
10705 次 |
最近记录: |