image blog how to use jenkins for job chaining and visualizations
May 7, 2014

Using Jenkins Build Pipelines to Chain and Visualize Jobs

Developer Productivity

In this article, we look at the Jenkins plugins developers can use to chain and visualize jobs for continuous delivery pipelines. 

Back to top

What Is Jenkins?

Jenkins is a popular server-based automation tool that is used to implement continuous integration pipelines. Jenkins Build Pipelines can be further configured for continuous delivery by using Pipeline plugins in both declarative and scripted DSLs.

Related Reading >> Top 10 Jenkins Features and Plugins

Back to top

Job Chaining and Jenkins Continuous Delivery Build Pipelines

Job chaining in Jenkins is the process of automatically starting other job(s) after the execution of a job. This approach lets you build multi-step Jenkins build pipelines or trigger the rebuild of a project if one of its dependencies is updated. These chained jobs form the core of Jenkins continuous delivery pipelines. 

Out of the Box Solution — Using Jenkins Build Other Projects

Jenkins has a built-in feature to build other projects. It is in the Post-build Actions section. You can specify the projects that you want to build after this project is built (you can trigger more than one). So whenever project A is built you will trigger the building of project B. You can also specify the conditions when the other jobs are built. Most often you are interested in continuing with the build pipeline only if the job is successful but your mileage might vary.

Jenkins Build Pipeline: Build other projects trigger

One thing to remember here is that Jenkins Build Triggers have two configurable locations. You can configure project A and specify a post action as in the previous screenshot. Another option is to configure this from project B and say "build this project B only after project A is built". You don't have to fill out both, just change one and the other is updated. See the next screenshot for the second option. Jenkins Build Triggers: Build after others solution

How Many Developers Are Using Jenkins in 2023?

Our 2023 Java Developer Productivity Report shows the latest technology adoption rates for Java developers.

Get the Report

Jenkins Build Pipeline Plugin

Update :  As of 9/30/2019 This plugin currently has an unaddressed stored XSS vulnerability. It is still used, as evident by the 40,000 plus downloads in August 2019.

Jenkins Build Pipeline Plugin is one interesting plugin. The main features of this plugin is to provide visualization of the build pipeline and also to provide manual trigger for continuous delivery purposes.

The configuration is a separate Post Build action where you can configure which projects should be built after project A. By default the triggering is actually done manually by the end user! If you want certain steps of the Jenkins pipeline to be automatic then you have to use the built-in job chaining (see the Out of the Box Solution for more details). Jenkins Build Pipeline Configuration example This plugin offers a very good visualization of the build pipeline. By configuring a new Jenkins view and choosing which job is the first job in the Jenkins pipeline you can get a visualization of the whole build pipeline. In the screenshot, be sure to note that one of those steps is manual and the result are automatic. The manual one can be triggered from the very same view. Jenkins Build Pipeline example

Jenkins Parameterized Trigger Plugin

Update: The last major release for this plugin was in December 2013. The plugin had almost 90,000 reported downloads in August 2019. The Jenkins Parameterized Trigger Plugin is another triggering plugin but with a twist: this plugin lets you configure more aspects of the Jenkins triggering logic. It covers the basic Out of the Box Solution features and adds many more. The most important one is the option to trigger the next build with Jenkins pipeline parameters.

For example, by defining SOURCE_BUILD_NUMBER=${BUILD_NUMBER} you are able to use the variable $SOURCE_BUILD_NUMBER in project B. This way you can, for example, use the artifact built in the previous job to be fetched from your central artifact repository using the ${BUILD_NUMBER}. Jenkins Trigger Parameterized Build


Downstream Buildview Plugin

The Downstream Buildview Plugin plugin that does not do job chaining itself, but provides a means to visualize the Jenkins build pipeline. It is similar to the Build Pipeline View but more dynamic. You can click on any item in the build history and have its build pipeline visualized. Jenkins Downstream Build Pipeline Visualization

 

The Jenkins Pipeline

Jenkins Pipeline, or Pipeline, is an overarching collection of plugins that support and enable implementation of continuous delivery pipelines. Jenkins build pipelines are defined via declarative or scripted pipelines and can be created in Vanilla Jenkins, Blue Ocean or SCM. This plugin "suite" is considered to be a more complete and dependable way to implement continuous delivery with Jenkins (which previously has been viewed as more of a duct-tape solution). Pipeline has a long list of dependent plugins that can be used to further increase functionality.

Back to top

Final Thoughts

The main feature that makes Jenkins so good is that there is always an app plugin for what you need. Of course, the same fact also highlights its biggest weakness. It is rather difficult to choose the correct plugin and very often you need a couple of plugins to achieve your goal. The same is true for job chaining and visualization. The job chaining features that we covered in this post all provide the minimum functionality - triggering other jobs.

  • The Parameterized Trigger plugin is the most feature-rich, but lacks the manual triggering.
  • The Jenkins Build Pipeline plugin only offers manual triggering and you need to figure out automatic triggering yourself (using the built-in feature for example).
  • From the visualization side, the Jenkins Build Pipeline plugin is definitely the best looking. At the same time, the plugin does not support passing parameters (the latest alpha build is a bit better) and once the build pipeline gets long it gets a bit ugly. We do like the part of defining a separate view and then always being on top of your build pipeline.
  • The Downstream Build View plugin gives you great flexibility and insight to job chaining, but does not enforce any kind of process.

So, there are the Jenkins plugins that we use at JRebel for job chaining and visualization. Do you use the same tools? If not, can you recommend any others? Which are your favorites? Please let us know on Twitter at @JRebel_Java

Looking for additional reading on CI/CD? This CI/CD hub from Perforce is a great place to start.

 

Want to see how much time JRebel can save you by eliminating redeploys? Try it free for 14 days.

Start JRebel

 

Related Resources

Back to top