Re: Build flow plugin: How to copy results from downstream jobs

2013-08-30 Thread nicolas de loof
>>> <http://stacktrace.jenkins-ci.org/search?query=groovy.lang.MissingMethodException>: >>>> No signature of method: >>>> com.cloudbees.plugins.flow.**FlowDelegate.rescue() is applicable for >>>> argument types: (Script1$_run_closure1_**clo

Re: Build flow plugin: How to copy results from downstream jobs

2013-08-30 Thread teilo
le for argument types: (Script1$_run_closure1_closure3) values: >>> >>> >>> Removing the guard clause made it work. So I'm guessing guard can only >>> handle 1 item? >>> >>> Thanks >>> >>> Petrik >>> >>&

Re: Build flow plugin: How to copy results from downstream jobs

2013-08-30 Thread Nico dHeureuse
tion>: >>> No signature of method: com.cloudbees.plugins.flow.FlowDelegate.rescue() >>> is applicable for argument types: (Script1$_run_closure1_closure3) values: >>> >>> >>> Removing the guard clause made it work. So I'm guessing guard can o

RE: Build Flow Plugin - Groovy libraries

2013-08-28 Thread James Nord (jnord)
Hi Bob, You could package it up in an extension (plugin). See https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Plugin#BuildFlowPlugin-ExtensionPoint /James From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Bob Bick Sent: 28 August 2013 15:51

RE: Build Flow Plugin - Groovy libraries

2013-08-28 Thread Bob Bick
Thanks James. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of James Nord (jnord) Sent: Wednesday, August 28, 2013 11:09 AM To: jenkinsci-users@googlegroups.com Subject: RE: Build Flow Plugin - Groovy libraries Hi Bob, You could package it up in an

RE: Build Flow Plugin - Groovy libraries

2013-08-28 Thread Bob Bick
f Bob Bick Sent: Wednesday, August 28, 2013 10:24 AM To: jenkinsci-users@googlegroups.com Subject: Build Flow Plugin - Groovy libraries Hi, I have been using the Build Flow Plugin for a while now, and it works great. I have multiple Build Flow Plugin jobs that have common groovy code that I'

Build Flow Plugin - Groovy libraries

2013-08-28 Thread Bob Bick
Hi, I have been using the Build Flow Plugin for a while now, and it works great. I have multiple Build Flow Plugin jobs that have common groovy code that I’d like to put into a Groovy library (call it Library.groovy). The Build Flow Plugin uses groovy.lang.GroovyShell to execute the groovy

Re: Build Flow Plugin: run build flow job on commit

2013-08-14 Thread Denis Belorunov
line after a commit on your scm, you can configure the flow to be >> triggered as the first scm-polling job is run". Does this means that if my >> flow job is running build A, and that build contains CVS polling, Build >> Flow Plugin can somehow intercept this, and start flow ins

Re: Build Flow Plugin: run build flow job on commit

2013-08-13 Thread nicolas de loof
is running build A, and that build contains CVS polling, Build > Flow Plugin can somehow intercept this, and start flow instead of actual A? > If this is true, how I can configure such trigger? > > Thank you > > -- > You received this message because you are subscribed to the Googl

Build Flow Plugin: run build flow job on commit

2013-08-12 Thread Denis Belorunov
it on your scm, you can configure the flow to be triggered as the first scm-polling job is run". Does this means that if my flow job is running build A, and that build contains CVS polling, Build Flow Plugin can somehow intercept this, and start flow instead of actual A? If this is true,

Re: Build flow plugin: How to copy results from downstream jobs

2013-08-12 Thread John Russell
lowDelegate.rescue() is >> applicable for argument types: (Script1$_run_closure1_closure3) values: >> >> >> Removing the guard clause made it work. So I'm guessing guard can only >> handle 1 item? >> >> Thanks >> >> Petrik >> >> >>

Re: Build Flow Plugin - reporting capability

2013-08-07 Thread Daniel Beck
(i.e. the master node keeps > the history)? I have no clue if that is even possible... > > Sorry for all these newbie questions. > > Thanks, > > Bob > > -Original Message- > From: jenkinsci-users@googlegroups.com > [mailto:jenkinsci-users@googlegroups.com

RE: Build Flow Plugin - reporting capability

2013-08-07 Thread Bob Bick
for all these newbie questions. Thanks, Bob -Original Message- From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Daniel Beck Sent: Wednesday, August 07, 2013 2:52 PM To: jenkinsci-users@googlegroups.com Subject: Re: Build Flow Plugin - reporting

RE: Build Flow Plugin - reporting capability

2013-08-07 Thread Bob Bick
Nicolas and Daniel, thank you for the help. Bob From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of nicolas de loof Sent: Wednesday, August 07, 2013 3:02 PM To: jenkinsci-users@googlegroups.com Subject: Re: Build Flow Plugin - reporting capability I

Re: Build Flow Plugin - reporting capability

2013-08-07 Thread nicolas de loof
and it seems > to be a nice tool. I’d like to expose the information as a nice web page in > Jenkins, but assume that is not really feasible. So, right now, I am > thinking to just have a the users run a groovy script with text output. > > > > From: jenkinsci-users@googlegro

Re: Build Flow Plugin - reporting capability

2013-08-07 Thread Daniel Beck
legroups.com > [mailto:jenkinsci-users@googlegroups.com] On Behalf Of nicolas de loof > Sent: Wednesday, August 07, 2013 2:56 AM > To: jenkinsci-users@googlegroups.com > Subject: Re: Build Flow Plugin - reporting capability > > you probably can use jenkins REST API to retrieve t

RE: Build Flow Plugin - reporting capability

2013-08-07 Thread Bob Bick
lf Of nicolas de loof Sent: Wednesday, August 07, 2013 2:56 AM To: jenkinsci-users@googlegroups.com Subject: Re: Build Flow Plugin - reporting capability you probably can use jenkins REST API to retrieve the list of executed jobs from a build flow execution, not sure yet 2013/8/6 Bob Bick mail

Re: Build Flow Plugin - reporting capability

2013-08-06 Thread nicolas de loof
you probably can use jenkins REST API to retrieve the list of executed jobs from a build flow execution, not sure yet 2013/8/6 Bob Bick > Hi, > > ** ** > > The Jenkins Build Flow Plugin is replacing our “massive” home grown build > system. > > ** ** > >

Build Flow Plugin - reporting capability

2013-08-06 Thread Bob Bick
Hi, The Jenkins Build Flow Plugin is replacing our "massive" home grown build system. A couple of times a year, our build team will create a Build Flow job from a template to perform the "massive" build which can last for several days. The build team will execute the Buil

Re: Newbie question: Build Flow Plugin and Multiple Nodes

2013-08-01 Thread Daniel Beck
Figured it out. You specified one parallel 'lane' that executes two builds in sequence. The example from the wiki has three 'lanes', with one job each. Something like the following is also possible: parallel ( { build('j1') build('j2') }, { build('j3') }) ... which builds three jobs in two

Re: Newbie question: Build Flow Plugin and Multiple Nodes

2013-08-01 Thread Daniel Beck
AFAICT your syntax is wrong. From the Wiki: parallel ( // job 1, 2 and 3 will be scheduled in parallel. { build("job1") }, { build("job2") }, { build("job3") } ) Note the extra braces. That's probably why it's not actually parallel. The build flow itself is "lightweight", which means

Newbie question: Build Flow Plugin and Multiple Nodes

2013-08-01 Thread Bob Bick
Hi, We have a Build Flow that runs two jobs in parallel. DSL==> parallel { build('job1') build('job2') } When I run the build flow, it always runs the jobs on the same node. Since each node has a max executors equal to 2, job1 and job2 execute serially (i.e. the Build Flow job a

Re: Build Flow Plugin

2013-07-25 Thread dbpatel
static job name like > "build-release" but when you use multiple SCM's build params don't work for > some reason. It's an open bug not sure when the fix is coming. So > currently we have a Sync_job that creates new jenkins jobs when a new > release is

Build Flow Plugin

2013-07-25 Thread dbpatel
e multiple SCM's build params don't work for some reason. It's an open bug not sure when the fix is coming. So currently we have a Sync_job that creates new jenkins jobs when a new release is created for that particular release. Thus the reason to want to pass in a param to bu

Re: build flow plugin and scm changes

2013-07-15 Thread blaz
If I understand correctly you actually have two independent jobs. You shouldn't use flow plugin just to monitor repository and then start downstream jobs. Each job should be configured independently with different SCM trigger. -- You received this message because you are subscribed to the Goog

Re: build flow plugin and scm changes

2013-07-14 Thread nicolas de loof
obs based on scm commit, do it BEFORE you > call build("job") > > How would I do that - any ideas? Can you give me an example? > > Cheers > Tom > > Sent from my iPhone > > On 13 Jul 2013, at 21:32, Thomas Fields wrote: > > Hi there, > > The build fl

Re: build flow plugin and scm changes

2013-07-14 Thread Thomas Fields
Thanks for the reply. >> is you have to exclude some jobs based on scm commit, do it BEFORE you call >> build("job") How would I do that - any ideas? Can you give me an example? Cheers Tom Sent from my iPhone On 13 Jul 2013, at 21:32, Thomas Fields wrote: > Hi t

Re: build flow plugin and scm changes

2013-07-14 Thread nicolas de loof
build flow orchestrate job execution, it don't handle scm-triggers. When flow is started, all builds involved will run is you have to exclude some jobs based on scm commit, do it BEFORE you call build("job") 2013/7/13 Thomas Fields > Hi there, > > The build flow plug

build flow plugin and scm changes

2013-07-13 Thread Thomas Fields
Hi there, The build flow plugin looks really powerful but it appears to be lacking the ability to only trigger sub jobs when there are scm changes. I have a simple build flow setup like so: def tomjob = parallel ([ first: { build("tomflow1") }, second: { build("tomflow2") }

Re: [build-flow-plugin] How to combine exit codes of partial builds?

2013-06-27 Thread Åsmund Østvold
>> guard { >> parallel ([ >> t1: { build("something") }, >> t2: { build("something else") } >> ]) >> } rescue { >> build("blab") >> } >> >> >> >> 2013/6/20 pawelrychlik

Build Flow Plugin

2013-06-27 Thread Schalk Cronjé
I have recently written up some material of using the Cloudbees Build Flow Plugin that goes beyond the basics. Maybe it will be of worth to someone. OTOH feedback will also be appreciated. The link to the blog posting is http://delivervalue.blogspot.co.uk/2013/06/more-advanced-build-flows-with

Build flow plugin: attempt at modular approach

2013-05-29 Thread Tom Deblauwe
k :) Another pitfall: the Buildstep jobs are executed on random executors/nodes. So you need another trick until this is fixed in the build flow plugin. You need the https://wiki.jenkins-ci.org/display/JENKINS/NodeLabel+Parameter+Plugin. Specify for each buildstep such a node parameter and name

Re: Build flow plugin does not visualize the flow correctly

2013-05-28 Thread slide
What about this library? It looks pretty good. http://cytoscape.github.io/cytoscape.js/ slide -- View this message in context: http://jenkins.361315.n4.nabble.com/Build-flow-plugin-does-not-visualize-the-flow-correctly-tp4660016p4667453.html Sent from the Jenkins users mailing list archive

Build Flow Plugin - don't trigger build when on scm change in triggered build

2013-05-27 Thread BELLUS Stefan
Hi Is it possible somehow to don't trigger build on job, when there are no changes for job in scm? E.g.: Job1 has no SCM change in time of "build command" execution. Command build( "job1" )will not start the build because of no scm change in job1. For this job variables it will use previous bu

Re: Build flow plugin: fails build if there are unstable builds

2013-04-07 Thread Dromedary ThirtyTwo
Here is Build Flows page: - https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Plugin -- 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 it, send an

Passing parameters between jobs when using the Build flow plugin

2013-04-05 Thread Patrik Johansson
Hi, I'm trying to set a variable in one job and have it passed along to the next, something that can easily be achieved by using the Parameterized trigger plugin. When using the build flow plugin https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Plugin I'm having some trouble to d

RE: Build flow plugin does not visualize the flow correctly

2013-03-21 Thread Wrobel, Pawel (NSN - PL/Wroclaw)
, 2013 9:35 AM To: jenkinsci-users@googlegroups.com Subject: Re: Build flow plugin does not visualize the flow correctly 2013/3/21 Wrobel, Pawel (NSN - PL/Wroclaw) mailto:pawel.wro...@nsn.com>> Hi, I guess this one is still under work right (https://wiki.jenkins-ci.org/display/JENKINS/Buil

Re: Build flow plugin does not visualize the flow correctly

2013-03-21 Thread nicolas de loof
8 728 455 306* > *e-mail: **pawel.wro...@nsn.com* > > ** ** > > *From:* jenkinsci-users@googlegroups.com [mailto: > jenkinsci-users@googlegroups.com] *On Behalf Of *ext nicolas de loof > *Sent:* Thursday, March 21, 2013 9:22 AM > *To:* jenkinsci-users@googlegroups.com &

RE: Build flow plugin does not visualize the flow correctly

2013-03-21 Thread Wrobel, Pawel (NSN - PL/Wroclaw)
Of ext nicolas de loof Sent: Thursday, March 21, 2013 9:22 AM To: jenkinsci-users@googlegroups.com Subject: Re: Build flow plugin does not visualize the flow correctly flow visualization is still early stage, and probably need some love to address complex graphs. We are extracting it into a more g

Re: Build flow plugin does not visualize the flow correctly

2013-03-21 Thread nicolas de loof
flow visualization is still early stage, and probably need some love to address complex graphs. We are extracting it into a more general purpose plugin (build graph view) so it can both handle flows and "classic" jenkins downstream chains 2013/3/21 Pawel Wrobel > Hi, > I have an issue with bulid

Build flow plugin does not visualize the flow correctly

2013-03-21 Thread Pawel Wrobel
Hi, I have an issue with bulid flow plugin. The defined flow is executed correctly (visible in Console Output) but the flow graph is being cut at some point of time and to further jobs from chain are ploted. the flow is the following: build("JOB-1") parallel ( { ignore(FAILURE) { b

Re: Custom workspace & build flow plugin?

2013-03-01 Thread nicolas de loof
x27;t see an option for setting the custom workspace on a build flow > plugin, am I missing something? I currently have the first build inside the > build flow checking out the code from SVN to the custom workspace, but I'd > like to move that into the actual flow so that I can see t

Custom workspace & build flow plugin?

2013-03-01 Thread dhyix
I don't see an option for setting the custom workspace on a build flow plugin, am I missing something? I currently have the first build inside the build flow checking out the code from SVN to the custom workspace, but I'd like to move that into the actual flow so that I can see the

Re: Build Flow Plugin: Ensuring jobs operate on the same Git revision

2013-02-05 Thread nicolas de loof
ver tried this. >> >> I expected you could also retrieve this commit revision from >> SCMRevisionState action, but git-plugin don't use this API (sic) >> >> 2013/2/4 Johannes Schirrmeister >> >>> Hi everyone, >>> >>> The Build

Re: Build Flow Plugin: Ensuring jobs operate on the same Git revision

2013-02-05 Thread Johannes Schirrmeister
pass > GIT_COMMIT to triggered jobs, never tried this. > > I expected you could also retrieve this commit revision from > SCMRevisionState action, but git-plugin don't use this API (sic) > > 2013/2/4 Johannes Schirrmeister > >> Hi everyone, >> >> The

Re: Build Flow Plugin: Ensuring jobs operate on the same Git revision

2013-02-05 Thread nicolas de loof
everyone, > > The Build Flow Plugin seems like a great way to orchestrate our build > pipelines. I would like to ask if there is any best practice on how to > ensure that all jobs in one pipeline checkout the same revisions of a Git > repository. > > I believe the Git plugin

Build Flow Plugin: Ensuring jobs operate on the same Git revision

2013-02-04 Thread Johannes Schirrmeister
Hi everyone, The Build Flow Plugin seems like a great way to orchestrate our build pipelines. I would like to ask if there is any best practice on how to ensure that all jobs in one pipeline checkout the same revisions of a Git repository. I believe the Git plugin initially sets the GIT_COMMIT

Re: copy aritfacts between builds with build flow plugin

2013-01-17 Thread nicolas de loof
t; . > > Asmund > > > On Thu, Jan 17, 2013 at 2:23 PM, nicolas de loof > 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/

Re: copy aritfacts between builds with build flow plugin

2013-01-17 Thread Åsmund Østvold
/ pass > fingerprints as you would do without build flow to orchestrate jobs > > > 2013/1/17 Åsmund Østvold > >> 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

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

copy aritfacts between builds with build flow plugin

2013-01-17 Thread Åsmund Østvold
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

Re: Build flow plugin: How to copy results from downstream jobs

2013-01-02 Thread nicolas de loof
post-job even when some jobs are >> unstable >> >> >> 2013/1/2 Patrick >> >>> Ok I'm going to have to amend this answer. My idea of having a separate >>> job at the end to gather the results would work if it wasn't for the fact >>

Re: Build flow plugin: How to copy results from downstream jobs

2013-01-02 Thread Patrick van der Velde
> 2013/1/2 Patrick > >> Ok I'm going to have to amend this answer. My idea of having a separate >> job at the end to gather the results would work if it wasn't for the fact >> that the build flow plugin kills the build as soon as one of the jobs >> fails. T

Re: Build flow plugin: How to copy results from downstream jobs

2013-01-02 Thread nicolas de loof
use gard+rescue so you can execute a post-job even when some jobs are unstable 2013/1/2 Patrick > Ok I'm going to have to amend this answer. My idea of having a separate > job at the end to gather the results would work if it wasn't for the fact > that the build flow plugin

Re: Build flow plugin: How to copy results from downstream jobs

2013-01-02 Thread nicolas de loof
Guard + rescue Le 2 janv. 2013 02:11, "Patrick" a écrit : > Ok I'm going to have to amend this answer. My idea of having a separate > job at the end to gather the results would work if it wasn't for the fact > that the build flow plugin kills the build as soon as

Re: Build flow plugin: How to copy results from downstream jobs

2013-01-01 Thread Patrick
Ok I'm going to have to amend this answer. My idea of having a separate job at the end to gather the results would work if it wasn't for the fact that the build flow plugin kills the build as soon as one of the jobs fails. That means I only can get the results if the build works wh

Re: Build flow plugin: How to copy results from downstream jobs

2013-01-01 Thread Patrick van der Velde
in the DSL > > 2013/1/1 Patrick > >> Hi All >> >> I've started using the Build Flow plugin to simplify my build pipeline. >> I've gotten it to work just fine (all the jobs get triggered at the right >> stage) but I can't seem to copy the generat

Re: Build flow plugin: How to copy results from downstream jobs

2013-01-01 Thread nicolas de loof
fingerprints or copy-artifact plugin, not sure yet about the way to define this in the DSL 2013/1/1 Patrick > Hi All > > I've started using the Build Flow plugin to simplify my build pipeline. > I've gotten it to work just fine (all the jobs get triggered at the right > s

Build flow plugin: How to copy results from downstream jobs

2012-12-31 Thread Patrick
Hi All I've started using the Build Flow plugin to simplify my build pipeline. I've gotten it to work just fine (all the jobs get triggered at the right stage) but I can't seem to copy the generated build results from the downstream jobs. For instance my build produces a CCM l

Build-flow plugin: sequence of parallel builds is completing but build is marked as failure.

2012-12-29 Thread damian
that build is subsequently built by the build-flow plugin. However with a large number of jobs to re-configure it's proving painful to track all of these issues down. Is there anyway to find out what is causing the failure? Thanks Damian

Re: Build-flow plugin - do not stop when build is failing

2012-12-21 Thread nicolas de loof
users! > > I want to run several jobs sequentially using the Build Flow plugin. The > jobs do not depend on each other and all must be executed even if any of > the others fails. The problem: The call of "build(job name)" lets the > hosting job fail (and terminate) once

Build-flow plugin - do not stop when build is failing

2012-12-21 Thread Sebastian Wolff
Hello Jenkins users! I want to run several jobs sequentially using the Build Flow plugin. The jobs do not depend on each other and all must be executed even if any of the others fails. The problem: The call of "build(job name)" lets the hosting job fail (and terminate) once a ch

Re: Build flow plugin parallel builds are not parallel

2012-12-06 Thread Mike Finneran
t all four nodes would be used to execute the > "Job-Build" instances four at a time in parallel. > Am I doing something wrong in the code? > Also, I'm using the latest jenkins (build 1.492) and the latest build flow > plugin (build 0.6) > > build("Job-Init&qu

Re: Build flow plugin parallel builds are not parallel

2012-12-06 Thread nicolas de loof
Do you have this job configured to allow concurrent execution ? this is not a restriction for the build-flow plugin : this one only schedule jobs, but execution depends on jenkins build queue management and related job configuration 2012/12/7 Glenn McElhoe > I noticed this problem as well.

Re: Build flow plugin parallel builds are not parallel

2012-12-06 Thread Glenn McElhoe
I noticed this problem as well. If you run parallel build of the same job, it doesn't work. My workaround was to make 12 jobs (Job-Build-1 through Job-Build-12), and it will call them in parallel.

Build flow plugin parallel builds are not parallel

2012-11-28 Thread Mike Finneran
t that all four nodes would be used to execute the "Job-Build" instances four at a time in parallel. Am I doing something wrong in the code? Also, I'm using the latest jenkins (build 1.492) and the latest build flow plugin (build 0.6) build("Job-Init"); parallel (

Re: Build flow plugin: fails build if there are unstable builds

2012-11-26 Thread bearrito
Why don't you handle the result codes in your job? Meaning just intercept the result code and change it to 0 if the build is only unstable. Yes, it is an ugly solution... On Thursday, November 22, 2012 10:40:19 AM UTC-5, Egle wrote: > > Hi, > > I am trying to set up a following flow if builds: >

Re: Build flow plugin: fails build if there are unstable builds

2012-11-23 Thread nicolas de loof
the error is ugly, but the behavior is as expected. A non successful step in the flow will interrupt the execution. The DSL could probably be extended to ignore some build results, something like : build( "B" ).ignore( UNSTABLE ) contributors are welcome :) 2012/11/22 Egle > Hi, > > I am tryin

Re: Build flow plugin: fails build if there are unstable builds

2012-11-23 Thread clem
Hi, have you tried to select the "Build after other projects are build" option ? In this case, if B is failing, C wouldnt be executed. Clem

Build flow plugin: fails build if there are unstable builds

2012-11-22 Thread Egle
Hi, I am trying to set up a following flow if builds: build( "A" ) build( "B" ) build( "C" ) Now I get "FATAL: null" error and stack trace in console if build B is unstable. So the flow does not execute job C. Is there a way to configure a flow that it would only terminate if the performed buil

Re: Build Flow Plugin exception

2012-11-20 Thread Larry Shatzer, Jr.
son > > Installed jenkins build flow plugin 0.5. > > Create a job and launched it. > Nothing happened. Nothing launched. > > Replaced with version 0.4. > Now I get an exception. > > Any ideas? > > My job is configured with: > > // q7 jobs will run in parallel. > p

Build Flow Plugin exception

2012-11-19 Thread Cypoman
Running 2.2 of Hudson Installed jenkins build flow plugin 0.5. Create a job and launched it. Nothing happened. Nothing launched. Replaced with version 0.4. Now I get an exception. Any ideas? My job is configured with: // q7 jobs will run in parallel. parallel ( { build(q7_win

Re: Build Flow Plugin: No signature of method FlowDelegate.parallel()

2012-11-13 Thread r2_
ACTION"])} ) On Saturday, November 10, 2012 9:28:18 AM UTC-5, Nicolas De loof wrote: > > parallel expect a set of closures, each closure being ran in a separate > thread : > > parallel( { build(A) }, > { build(B) } > ) > > > 2012/11/9 r2_ >

Re: Build Flow Plugin: No signature of method FlowDelegate.parallel()

2012-11-10 Thread nicolas de loof
parallel expect a set of closures, each closure being ran in a separate thread : parallel( { build(A) }, { build(B) } ) 2012/11/9 r2_ > Hey, I got a really cool looking error using Build Flow Plugin. The flow > is just 2 parameterized jobs which should run in paral

Build Flow Plugin: No signature of method FlowDelegate.parallel()

2012-11-09 Thread r2_
Hey, I got a really cool looking error using Build Flow Plugin. The flow is just 2 parameterized jobs which should run in parallel on different nodes. Here's the DSL: parallel ( build("agile_code", ENVIRONMENT: params["ENVIRONMENT"], ACTION: params[&quo

Build-Flow Plugin and Publishers

2012-10-23 Thread ghorvath
Been trying to get a bit of attention on this one. I've recently started experimenting with the build-flow plugin, and I like it. However, I cannot get the publishers to execute after the flow completes. I've done a bit of digging through JIRA and see that there has been some tr

Re: Build Flow plugin saves empty DSL

2012-10-11 Thread dhyix
always saves an empty DSL. I configure it, enter in: >> build("job"). Then after saving, if I reconfigure it or look at the config >> file in the filesystem the dsl is always empty. Is there something I'm >> missing? >> >> I have a new install of Jenkin

Re: Build Flow plugin saves empty DSL

2012-10-03 Thread nicolas de loof
he filesystem the dsl is always empty. Is there something I'm > missing? > > I have a new install of Jenkins version 1.484 and I've added the Build > Flow plugin version 0.5 to it. That's it. > > Thanks! >

Build Flow plugin saves empty DSL

2012-10-03 Thread dhyix
I've added the Build Flow plugin version 0.5 to it. That's it. Thanks!

Re: passing parameters with build flow plugin

2012-09-06 Thread ola nilsson
> > > > could someone post an example on how to read parameters passed from > > one job to another using Build Flow plugin? Plugin documentationhttps:// > wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Plugingives > > information on how to put a parameter to the job, b

Re: passing parameters with build flow plugin

2012-08-20 Thread Tomek Kaczanowski
Hi All, any hints? -- Regards, Tomek Kaczanowski On 13 Sie, 17:45, Tomek Kaczanowski wrote: > Hi All, > > could someone post an example on how to read parameters passed from > one job to another using Build Flow plugin? Plugin > documentationhttps://wiki.jenkins-ci.org/displa

build flow plugin syntax

2012-08-15 Thread marathiboy
Hello, I am using a job that is triggering 2 jobs A & B, using build flow plugin. Each job is build flow job itself. I can use guard and rescue, but what I really need is to exit if Job A fails (or any job under Job A fails). So whats the syntax of adding just exit within rescue part of J

passing parameters with build flow plugin

2012-08-13 Thread Tomek Kaczanowski
Hi All, could someone post an example on how to read parameters passed from one job to another using Build Flow plugin? Plugin documentation https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Plugin gives information on how to put a parameter to the job, but does not show how to use them

Re: Build Flow Plugin and SVN revision

2012-08-10 Thread Tomek Kaczanowski
ok, got it: b = build( "my-build" ) out.println b.build.properties.environment['SVN_REVISION']

Build Flow Plugin and SVN revision

2012-08-10 Thread Tomek Kaczanowski
Hi All, I'm experimenting with Build Flow Plugin. Can't figure out how to get the SVN revision from the first build so I could pass it to every build in my flow. Please give some hints, I'm stuck. -- Regards, Tomek Kaczanowski

<    1   2   3