DEV Community

Discussion on: Setup Continuos Integration/Delivery system in just 4 steps with Jenkins Pipelines and Blue Ocean

Collapse
 
acdcjunior profile image
Antônio "acdc" Jr.

Would you have more info on how those parallel steps run regarding workspace? Do they (those three sh) run on the same copy (folder) or is there any kind of copying?

Collapse
 
acdcjunior profile image
Antônio "acdc" Jr.

After reading your post I was able to do some digging and found out some interesting things. Jenkinsfile has a stash/unstash feature and also something called external workspaces; I think this is the way to go regarding "sharing" generated artifacts between stages/steps.

Collapse
 
jalogut profile image
Juan Alonso

Hi, as far as I know parallel tasks are working on same workspace by default. As you mentioned, you could modify this behaviour doing specific actions before or into the parallel stages.