How to invoke a jenkins pipeline A in another jenkins pipeline B

Following solution works for me:

pipeline {
    agent
    {
        node {
                label 'master'
                customWorkspace "${env.JobPath}"
              }
    }

    stages 
    {
        stage('Start') {
            steps {
                sh 'ls'
            }
        }

        stage ('Invoke_pipeline') {
            steps {
                build job: 'pipeline1', parameters: [
                string(name: 'param1', value: "value1")
                ]
            }
        }

        stage('End') {
            steps {
                sh 'ls'
            }
        }
    }
}

Adding link of the official documentation of “Pipeline: Build Step” here:
https://jenkins.io/doc/pipeline/steps/pipeline-build-step/

Leave a Comment