Re: Problem with Build Flow plugin 0.10 on Jenkins 1.532.1

2014-04-04 Thread Sascha Herrmann
Thanks for your reply. Yes, using Fiddler, the last request I see before the error is a GET to http://server/job/job_name/descriptorByName/com.cloudbees.plugins.flow.BuildFlow/checkDsl?value=... with value being the encoded text of the DSL. The DSL itself is some 3900 characters. Then add

Any build-step type as batch task

2014-04-04 Thread Sam Liddicott
Batch tasks can only be shell commands. I'd like to be able to run any build step type as a batch command - e.g. publish-over-cifs This is something that would take place after a build has been verified and so can't be another regular build step. This purpose meets the aims of batch task:

RE: buildflow hang when cancelling queued builds

2014-04-04 Thread James Nord (jnord)
I Changed the handling of cancel since the last release - so that it actually kills the downstream projects as well (including those in the queue). Given that there is a good chance that this is fixed - if you feel brave and want to try a snapshot. /James From: jenkinsci-users@googlegroups.com

Re: How do I get support for Startup Trigger plugin when owners not responding?

2014-04-04 Thread Baptiste Mathus
Hi, About getting support. See my previous answer for a unrelated subject: https://groups.google.com/forum/#!msg/jenkinsci-dev/ikjD_vw8rDg/IXVH3V3ZAgsJ TL;DR this project is OSS, either take yourself over the patch as you say, or pay someone to do it. Cheers 2014-04-03 22:26 GMT+02:00 Andrew

Re: Custom workspace for remote machine

2014-04-04 Thread Jean-Baptiste MARTIN
Indeed! Thank you. -- 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 email to jenkinsci-users+unsubscr...@googlegroups.com. For more options, visit

Unable to get plugins

2014-04-04 Thread Laurent Roger
I have the same problem reported by rec (deleted message) Apr 2, 2014 2:04:11 PM hudson.model.UpdateCenter$DownloadJob run SEVERE: Failed to install Credentials Plugin java.io.IOException: Failed to download from http://updates.jenkins-ci.org/download/plugins/credentials/1.10/credentials.hpi

Maven 3 PreBuild Extension Point

2014-04-04 Thread eugene
Basically the title says it all, is there a pre-build extension point for maven 3? i am looking at MavenReporter, but it does not work. It seams like it was made for maven 2 (I am looking at it's implementations) and almost all of them say their are for maven 2... Thx, Eugene. -- View this

Re: Unable to update/install various plugins

2014-04-04 Thread Laurent Roger
Same for me since this afternoon. HTTP response code: 504 or 503 - servers seems to be overloaded ? Just wait :( or try to grab the plugins files manually and put them into JENKINS_HOME/plugins, restart jenkins. Kr -- You received this message because you are subscribed to the Google Groups

Re: LocalRepositoryLocator not getting called

2014-04-04 Thread eugene
Answering to myself... You have to go to jenkins settings and choose a different local repo strategy (Configure Jenkins - local maven repository - and select your plugin... ) -- View this message in context:

Re: AbstractClearCaseScm#moduleRoot only returns worspace/folder (Maven SiteArchiver fails)

2014-04-04 Thread kkuehne
I open a jira bug JENKINS-22465 track the issue further: https://issues.jenkins-ci.org/browse/JENKINS-22465 -- View this message in context: http://jenkins-ci.361315.n4.nabble.com/AbstractClearCaseScm-moduleRoot-only-returns-worspace-folder-Maven-SiteArchiver-fails-tp4692687p4697217.html Sent

Re: buildflow hang when cancelling queued builds

2014-04-04 Thread Marc MacIntyre
The latest snapshot doesn't address this; it does abort running subjobs, and dequeues those that have not started, but if a sub-job is manually dequeued, the build flow never notices. On Fri, Apr 4, 2014 at 1:39 AM, James Nord (jnord) jn...@cisco.com wrote: I Changed the handling of cancel

Re: Can I use a jenkins slave with ssh forwarding?

2014-04-04 Thread JonathanRRogers
On Thursday, April 3, 2014 12:49:42 PM UTC-4, Duncan McNaught wrote: Dear Jenkins Users, The ssh command to connect to the jenkins slave is: ssh -A -t -q x.x.x.x ssh -A -p 51322 user@x.x.x.x so I selected the slave launch method Launch slave via execution of command on the Master and

Re: Filter culprits on email-ext

2014-04-04 Thread Jon Schewe
Oh, that doesn't sound too bad. Can you point me at some documentation and/or examples? Thanks. On Tue, Apr 1, 2014 at 5:23 PM, Slide slide.o@gmail.com wrote: No, you use Groovy for the pre-send script. There is no other plugin that I know of. On Tue, Apr 1, 2014 at 3:14 PM, Jon

Re: Filter culprits on email-ext

2014-04-04 Thread Slide
Information from the wiki [1] Pre-send Script The pre-send script is a feature which allows you to write a script that can modify the MimeMessagehttp://docs.oracle.com/javaee/1.4/api/javax/mail/internet/MimeMessage.html object prior to sending. This would allow adding custom headers, modifying

Re: Problem with Build Flow plugin 0.10 on Jenkins 1.532.1

2014-04-04 Thread teilo
Hi Sascha, Fix is at https://github.com/jenkinsci/build-flow-plugin/pull/42 if you want to get the source and do a local build. Otherwise wait for the code to be accepted and either grab the latest build from Jenkins, or wait for the release. /James On Friday, 4 April 2014 08:36:24 UTC+1,

Re: buildflow hang when cancelling queued builds

2014-04-04 Thread teilo
Reproduced the issue locally - but I think the root cause is Jenkins not the plugin. On Friday, 4 April 2014 19:04:34 UTC+1, Marc MacIntyre wrote: The latest snapshot doesn't address this; it does abort running subjobs, and dequeues those that have not started, but if a sub-job is manually

Re: Filter culprits on email-ext

2014-04-04 Thread Jon Schewe
Awesome, thanks! On Fri, Apr 4, 2014 at 3:09 PM, Slide slide.o@gmail.com wrote: Information from the wiki [1] Pre-send Script The pre-send script is a feature which allows you to write a script that can modify the