You can use pipeline and orchestrate Freestyle jobs:
- https://jenkins.io/doc/pipeline/steps/pipeline-build-step/#build-build-a-job

For instance, see the below declarative pipeline snippet:


pipeline {

    agent any

    stages {

        stage('Build TFSVS') {
            steps {

             build job: 'YourFreeStyleJob'

            }
        }

    }

}



You can see further examples in the below url:
- https://jenkins.io/doc/pipeline/examples/#trigger-job-on-all-nodes

Probably you can combine JobDSL and Pipeline to code your Jenkins 
Jobs/Pipelines 

I hope it helps.

Cheers

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/188efbbe-0c79-49d6-9296-f1be4d9558a5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to