Click here to Skip to main content
15,885,214 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Consider I have 3 Repos, RepoA, RepoB and RepoC.

In Jenkins Pipeline I want to perform individual builds for all the 3 Repos only if there is a recent check-in. (These are 3 repos but the solution is inter dependent).

Stages are like below

stages {
        stage ('Build') {
            ....
        }
        stage ('UnitTest') {
            ....
        }
        stage ('Deploy') {
            ....
        }
    }


All I want is to run 3 stages at once or in parallel if multiple Repo detects changes (Check-in done in RepoA and RepoB only (Consider)). How can this be achieved in Jenkins pipeline?

What I have tried:

clueless to find a solution for this.
Posted
Updated 10-Jan-22 23:18pm

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900