在共享库方法中,我试图在之后执行一个阶段和一个发布步骤:
def call(String name = 'human') {
echo "Hello, ${name}."
this.stage("mystage"){
this.node('master') {
this.sh('echo executing stage')
}
}
this.post {
failure {
echo 'This step failed!'
}
}
}
它给出了一个错误No such DSL method 'post' found among steps
。post 步骤可以在“正常”管道脚本中很好地使用,如下所示:
https ://jenkins.io/doc/book/pipeline/syntax/#post
有没有办法在共享库中使用它?
干杯!