Re: copy aritfacts between builds with build flow plugin

2013-01-17 Thread nicolas de loof
just use the copy-artifact plugin to copy from upstream build / pass
fingerprints as you would do without build flow to orchestrate jobs

2013/1/17 Åsmund Østvold asmu...@gmail.com

 I am investigating the build flow plugin and have hit a issue I am not
 able to solve.  What I want to able to copy artifacts from build job to
 test jobs:

 buildJob = build(buildBinaries)

 parallel(
 { build(test1) },
 { build(test2) }
 )

 All projects need to be able to run concurrently(they are configured with
 different work spaces) including the build flow project.

 Have anybody been able to do this?

 Asmund





Re: copy aritfacts between builds with build flow plugin

2013-01-17 Thread Åsmund Østvold
From the top of job output of test1 is:

Started by build flow buildFlow#48

Not buildBinaries. Did I misunderstand you?

So my question is who to communicate what build buildBinaries jobs that
finished and how to communicate this to test[1,2]. I agree with you that I
need to use copy artifact plugin but I do not know how to do this.

Background:
The build flow job buildFlow is a check-in regression job that will be
hooked up to Gerrit using

.

Asmund


On Thu, Jan 17, 2013 at 2:23 PM, nicolas de loof
nicolas.del...@gmail.comwrote:

 just use the copy-artifact plugin to copy from upstream build / pass
 fingerprints as you would do without build flow to orchestrate jobs


 2013/1/17 Åsmund Østvold asmu...@gmail.com

 I am investigating the build flow plugin and have hit a issue I am not
 able to solve.  What I want to able to copy artifacts from build job to
 test jobs:

 buildJob = build(buildBinaries)

 parallel(
 { build(test1) },
 { build(test2) }
 )

 All projects need to be able to run concurrently(they are configured with
 different work spaces) including the build flow project.

 Have anybody been able to do this?

 Asmund






Re: copy aritfacts between builds with build flow plugin

2013-01-17 Thread nicolas de loof
use artifact fingerprints to copy from the previous job

2013/1/17 Åsmund Østvold asmu...@gmail.com

 From the top of job output of test1 is:

 Started by build flow buildFlow#48

 Not buildBinaries. Did I misunderstand you?

 So my question is who to communicate what build buildBinaries jobs that
 finished and how to communicate this to test[1,2]. I agree with you that I
 need to use copy artifact plugin but I do not know how to do this.

 Background:
 The build flow job buildFlow is a check-in regression job that will be
 hooked up to Gerrit using

 .

 Asmund


 On Thu, Jan 17, 2013 at 2:23 PM, nicolas de loof nicolas.del...@gmail.com
  wrote:

 just use the copy-artifact plugin to copy from upstream build / pass
 fingerprints as you would do without build flow to orchestrate jobs


 2013/1/17 Åsmund Østvold asmu...@gmail.com

 I am investigating the build flow plugin and have hit a issue I am not
 able to solve.  What I want to able to copy artifacts from build job to
 test jobs:

 buildJob = build(buildBinaries)

 parallel(
 { build(test1) },
 { build(test2) }
 )

 All projects need to be able to run concurrently(they are configured
 with different work spaces) including the build flow project.

 Have anybody been able to do this?

 Asmund