我的Jenkinfile包含5个阶段,彼此独立。
我想基于git commit触发每个阶段。
有可能这样做吗?
答案 0 :(得分:1)
您可以在变更日志中查询特定文本
stage("Enterprise build") {
when {
changelog "^make-it-so.*"
branch "master"
}
steps {
script {
//do special stuff
}
}
}