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.
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.