Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个工作“JobA”,它创建了一个 gerrit 并在其上执行 CR+2,CR+2 事件将触发 JobB,我希望 JobA 在退出之前等待 JobB 完成,这可能吗?如果是,如何?
您可以使用 jenkins 管道插件实现您想要的。那将是 JobA 的简化管道定义:
node { // create a gerrit build job: 'JobB' // steps after JobB finishes }