jenkins-plugins
Job DSL Plugin Vs Pipeline Plugin
I have extensive experience with both. A concise reply is that Job DSL has existed for much longer and was Netflix’s open source solution for “coding” Jenkins. It allowed you to introduce logic and variables into scripting your Jenkins jobs and typically one would use these jobs to form some sort of “pipeline” for a … Read more
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