Hi,

What is the best practice to work on the freestyle workspace , since the 
freestyle job is doing a checkout of the code via TFSVS.
Do I need to use   a Custom workspace or to copy all workspace ?

Thanks


On Saturday, August 5, 2017 at 1:31:45 PM UTC+3, Victor Martinez wrote:
>
> 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/a5d6a567-7939-49fb-9760-9b04c2bfb185%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to