Re: Multiple `archiveArtifacts` commands in one Jenkins pipeline

2019-02-15 Thread László Boros
Yeah, we thought about that, but I'm not sure how stashing would work for parallel running stages, also we would want to minimize network traffic between the nodes. Right now I'm investigating where the artifacts are stored and hacking something in shell that could merge the results from differ

Re: Multiple `archiveArtifacts` commands in one Jenkins pipeline

2019-02-15 Thread Arnaud bourree
Hi, I've "archiveArtifact" located in many stages in one single pipeline and that works for me on 2.150.2 Arnaud Le ven. 15 févr. 2019 à 14:01, László Boros a écrit : > Anyone with a similar issue? I'd really appreciate any tip. > > Thanks! > Laci > > > On 13 Feb 2019, at 10:37, László Boros

Re: Multiple `archiveArtifacts` commands in one Jenkins pipeline

2019-02-15 Thread Adrien Lecharpentier
as a workaround, you could try to `stash` the binaries and `unstash` them all in the same node and archive them then. But for your problem, it's the first time I see this. Sorry. Le ven. 15 févr. 2019 à 14:01, László Boros a écrit : > Anyone with a similar issue? I'd really appreciate any tip.

Re: Multiple `archiveArtifacts` commands in one Jenkins pipeline

2019-02-15 Thread László Boros
Anyone with a similar issue? I'd really appreciate any tip. Thanks! Laci > On 13 Feb 2019, at 10:37, László Boros wrote: > > Hi everyone! > > We are facing some issues with our main Jenkins pipeline. It consists of > multiple stages which are executed on different machines, and each stage can

Multiple `archiveArtifacts` commands in one Jenkins pipeline

2019-02-13 Thread László Boros
Hi everyone! We are facing some issues with our main Jenkins pipeline. It consists of multiple stages which are executed on different machines, and each stage can produce artifacts. We are trying to archive these all by calling the `archiveArtifacts` pipeline command after each stage, but it se