How to limit Jenkins concurrent multibranch pipeline builds?

Found what I was looking for. You can limit the concurrent builds using the following block in your Jenkinsfile. node { // This limits build concurrency to 1 per branch properties([disableConcurrentBuilds()]) //do stuff … } The same can be achieved with a declarative syntax: pipeline { options { disableConcurrentBuilds() } }

How do I make a Jenkins job start after multiple simultaneous upstream jobs succeed?

Pipeline plugin You can use the Pipeline Plugin (formerly workflow-plugin). It comes with many examples, and you can follow this tutorial. e.g. // build stage ‘build’ … // deploy stage ‘deploy’ … // run tests in parallel stage ‘test’ parallel ‘functional’: { … }, ‘performance’: { … } // promote artifacts stage ‘promote’ … Build … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)