Search code examples
jenkinsaggregatemicroservicesbuild-pipeline-plugin

Aggregation of jenkins pipelines


The Jenkins pipeline plugin is awesome. But is it also possible to aggregate pipelines of (dependent projects) e.g. micro-services?


Solution

  • You can use the way that @ebnius says where you have little pipeline jobs and a parent which is orchestrating the complete workflow and calling the different pipelines.

    Or you can use the Shared Library plugin (https://jenkins.io/doc/book/pipeline/shared-libraries/) where you define a step per groovy file for example and you have the entire structure modularized.