Understanding build pipelines

2014-06-20 Thread David Aldrich
Hi For our large C++ project, hosted in Subversion, we have a Jenkins job that continuously builds the project on a Linux slave. We also have jobs that periodically run regression tests on it (these tests are long and we don't want to run them on every commit). Currently, the regression

Understanding build pipelines

2014-06-20 Thread swastika basu
Hi David, you can use the Copy Artifact Plugin . This plugin allows Job B to copy any or all of the published artifacts from Job A. -- 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

Re: Understanding build pipelines

2014-06-20 Thread Eric Wood
David: I pass the CI job's workspace into the downstream job using my build pipeline via the clone workspace plugin.  The CI job uses the Post-build Actions -Archive for Clone Workspace SCM.  The downstream job uses the cloned workspace as a SCM plugin. Eric On Friday, June 20, 2014 9:49