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?
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.
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.
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Would you have more info on how those
parallel
steps run regarding workspace? Do they (those threesh
) run on the same copy (folder) or is there any kind of copying?After reading your post I was able to do some digging and found out some interesting things.
Jenkinsfile
has astash
/unstash
feature and also something called external workspaces; I think this is the way to go regarding "sharing" generated artifacts between stages/steps.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.