Re: how to convert persisted data from old plugin to new one??

2014-08-01 Thread addict . vim
Stephen, you are right - I was not doing thing right - I have changed the plugin name a little bit - this caused above mentioned issue. now I have returned old name and everything is fine thinking on how to replace all jobs traversal. On Thursday, July 31, 2014 6:40:41 PM UTC+4, Stephen

Re: how to convert persisted data from old plugin to new one??

2014-08-01 Thread addict . vim
So I need to hook when job is opened for configuration and when build is started - correct? build started can be handled by RunListener, what about opening job configuration page - I can't find a way yet пятница, 1 августа 2014 г., 10:08:55 UTC+4 пользователь addic...@gmail.com написал:

Re: Should we come up with a browser support matrix?

2014-08-01 Thread evernat
Hi Tom, In my opinion, we should not try to support IE8 in UI refresh, because it would be foolish for a user to still use IE8 even on WinXP. Perhaps some slow companies still pretend that IE8 is their mandatory browser [1] (and never respect that themselves). But in my opinion, your UI

Re: How to deactivate some logs

2014-08-01 Thread Arnaud Héritier
ok sadly this morning I discover that it wasn't a good idea to hide this problem. My instance is really slow with ~10 threads blocked like this : RequestHandlerThread[#700] RequestHandlerThread[#700] Id=63426 Group=main BLOCKED on

Re: Require JDK 7 to build?

2014-08-01 Thread Nigel Magnay
(roll on JDK 8 as min runtime) ​+1 Yes, please. ​ -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-dev+unsubscr...@googlegroups.com. For more

Re: Changing Console Output to look more like terminal

2014-08-01 Thread Tom Fennelly
Hi all. Thanks for your feedback. We have closed this PR. Maybe we could do it as part of a Themes type feature, where among other things people could select their preferred Console Output theme. -- You received this message because you are subscribed to the Google Groups Jenkins

Re: Plugin that generates Jobs based on a template

2014-08-01 Thread Ben Patterson
Karthik - have you looked at the Job DSL Plugin https://wiki.jenkins-ci.org/display/JENKINS/Job+DSL+Plugin? That is a decent option for your use case. It can both create the parent job (or template), and it can also create child jobs based on a template. As you look at it, I'd suggest looking

[new plugin] Hosting for Gitorious WebHook Plugin

2014-08-01 Thread Sebastian Heuer
Hi crowd, since the existing Gitorious plugin seems to be dead (one release back in 2012, no activtiy on github) and does not work with recent versions of the Git plugin, I decided to write a new plugin for triggering git polls through Gitorious WebHooks

RE: Require JDK 7 to build?

2014-08-01 Thread James Nord (jnord)
-1 due to things like the lovely maven integration that would require builds use jdk8 also. (I will pre-empt the toolchains answer as Jenkins does not have a suitable[1] toolchains implementation to run maven with X and compile code with Y). /James [1] which will auto install the JDKs (and

Workflow plugin - Questions, Bugs and Features

2014-08-01 Thread Sagi Sinai-Glazer
Hi, I've been playing-around with the workflow plugin - trying to evaluate its use for our team and our clients. I have found some issues I'd like to share with you and hopefully promote them in future releases. Thanks a lot, Sagi *Questions:* - Where can I find documentation

Re: Jenkins Workflow Summit to go with JUC Bay Area?

2014-08-01 Thread Sagi Sinai-Glazer
Definately interested! Even if I can't make it in myself (travel approval is hard these day :)) I'm sure it will ramp up the workflow development. As you can see here https://groups.google.com/forum/#!topic/jenkinsci-dev/ZsIk0P7c9EQI'm highly interested in it... Sagi On Wednesday, 30 July

Jenkins plugin generator does not work

2014-08-01 Thread Aleksandr Yakhnev
At the site http://plugin-generator.jenkins-ci.org/ after clicking on button I see the error message: HTTP Status 500 - -- *type* Exception report *message* *description* *The server encountered an internal error () that prevented it from fulfilling this

Re: Workflow plugin - Questions, Bugs and Features

2014-08-01 Thread Jesse Glick
On Fri, Aug 1, 2014 at 6:50 AM, Sagi Sinai-Glazer sagisi...@gmail.com wrote: I have found some issues I'd like to share with you and hopefully promote them in future releases. Excellent, keep it coming. Where can I find documentation of the supported Groovy CPS DSL syntax? It is pretty early

Re: How long should plugins support previous releases?

2014-08-01 Thread Jesse Glick
On Thu, Jul 31, 2014 at 3:24 AM, Stephen Connolly stephen.alan.conno...@gmail.com wrote: So for example there are some changes to the SCM api in 1.568... if you want to pick up support for them then there is really only one way to do that... In fact the master branch of git-plugin does require

Publishing build artifacts to multiple Artifactory URLs using Jenkins-Artifactory plugin

2014-08-01 Thread Mandeep Mehra
Is anyone aware if there's a version of Artifactory plugin for Jenkins that can upload artifacts to multiple artifactory URLs. I have a need to keep two Artifactory instances into sync..so want to publish Jenkins generated artifacts to both URLs -- You received this message because you are

Re: Publishing build artifacts to multiple Artifactory URLs using Jenkins-Artifactory plugin

2014-08-01 Thread Dean Yu
Wouldn't it better to replicate from Artifactory? What if you had multiple Jenkins jobs that deployed artifacts? Then each one would have to be configured with multiple URLs. What something other than Jenkins jobs also uploaded to Artifactory? -- Dean From: Mandeep Mehra

Re: How long should plugins support previous releases?

2014-08-01 Thread Mark Waite
Thanks for the clarification. If newer API support is needed, then the plugin must depend on the version which supports that API. You've adapted the git plugin to the newer SCM API on the master branch, and have offered it as a 2.3 beta pre-release. I don't understand how to use the LTS update

Starting a job from an API call with partial set of job parameters

2014-08-01 Thread Ioannis Moutsatsos
After reviewing the parameterized plugin I have been able to trigger JOB2 by posting to: http://jenkinsServr:8080/job/JOB2/buildWithParameters?JOB2PARAM1=VAL1JOB2PARAM2=VAL2,JOBPARAM3=VAL3 http://jenkinsservr:8080/job/JOB2/buildWithParameters?JOB2PARAM1=VAL1JOB2PARAM2=VAL2,JOBPARAM3=VAL3

Re: Starting a job from an API call with partial set of job parameters

2014-08-01 Thread Daniel Beck
On 01.08.2014, at 20:00, Ioannis Moutsatsos imoutsat...@gmail.com wrote: Is there a way to pass just parameters VAL1,VAL2 (which are dynamically determined in JOB1) and then wait for the user to select VAL3 from the job UI before clicking on the build button? Build With Parameters Plugin

Re: Starting a job from an API call with partial set of job parameters

2014-08-01 Thread Ioannis Moutsatsos
Thanks Daniel. Indeed sounds like it would fit my requirement. I'll give it a try. regards Ioannis On Friday, August 1, 2014 2:05:02 PM UTC-4, Daniel Beck wrote: On 01.08.2014, at 20:00, Ioannis Moutsatsos imout...@gmail.com javascript: wrote: Is there a way to pass just parameters

Re: Starting a job from an API call with partial set of job parameters

2014-08-01 Thread Ioannis Moutsatsos
So I did give it a try and it works! Unfortunately (for me) it works but in an 'simple' way similar to the re-build plugin, in that the parameters are not rendered in their original UI form but rather as input text boxes. That makes it unsuitable for use with my application where many of the

request for commit access to https://github.com/jenkinsci/ghprb-plugin

2014-08-01 Thread David Tanner
Hello, Can I be granted access to commit to this plugin? There are some features I would like add, but it appears there has been no dev activity here for over a month. githubid: DavidTanner Thanks, David Tanner -- You received this message because you are subscribed to the Google Groups

Re: How long should plugins support previous releases?

2014-08-01 Thread Jesse Glick
On Fri, Aug 1, 2014 at 9:35 AM, Mark Waite mark.earl.wa...@gmail.com wrote: You've adapted the git plugin to the newer SCM API on the master branch, and have offered it as a 2.3 beta pre-release. Right. By marking it 2.3-beta-1 I ensured that it only appears on the experimental update center,

Re: [git-plugin] pull request #245

2014-08-01 Thread 'Jakob Korherr' via Jenkins Developers
Ping. It would be cool to get commit access to https://github.com/jenkinsci/git-plugin to be able to merge the pull request. My github id: jakobk Thanks, Jakob On Thu, Jul 31, 2014 at 10:49 AM, Jakob Korherr korh...@google.com wrote: Hi, I created a pull request for the git-plugin last

Re: [git-plugin] pull request #245

2014-08-01 Thread Mark Waite
I'd prefer that we not add another submitter on the git plugin at this time. I'm not the primary maintainer of the plugin, but I am one of the maintainers. Nicolas or Jesse may well feel differently, and may choose to add you. I defer to their judgment. The git plugin is widely used, has many

Re: [git-plugin] pull request #245

2014-08-01 Thread Jesse Glick
On Fri, Aug 1, 2014 at 2:25 PM, Mark Waite mark.earl.wa...@gmail.com wrote: I'm not the primary maintainer of the plugin, but I am one of the maintainers. Nicolas or Jesse may well feel differently I would not consider myself one of the maintainers. If it has a “primary maintainer” it would

Request to host plug-in: Flaky Tests Handler

2014-08-01 Thread Qingzhou Luo
Hi, I'd like to host our new plug-in. Plugin name: flaky-test-handler My github account: qingzhouluo/seriousamlqz (Please add both, thanks). Description: This plugin is designed to handle flaky tests. Currently it aims for Git and Maven. 1. We recently made some contribution to Maven

Re: Determining the consequences of starting a job from the REST API

2014-08-01 Thread Jesse Glick
On Wed, Jul 30, 2014 at 5:15 PM, Salim Fadhley salimfadh...@gmail.com wrote: What'd really want is a change to the /build and /buildWithParmeters so that instead of just returning an HTTP status code, I'd like to see some more detailed status. It ought to be able to identify the queue item or

Re: Jenkins plugin generator does not work

2014-08-01 Thread Jesse Glick
On Fri, Aug 1, 2014 at 7:50 AM, Aleksandr Yakhnev anp...@gmail.com wrote: At the site http://plugin-generator.jenkins-ci.org/ after clicking on button I see the error message: […] java.io.IOException: Too many open files […] I pushed a possible fix. Not sure if that goes live automatically

Re: Save authentication from Kerberos Single Sign On filter

2014-08-01 Thread Jesse Glick
On Mon, Jul 21, 2014 at 5:18 AM, Joakim Ahle ahle.joa...@gmail.com wrote: I'm trying to write a filter for Kerberos (SSO) authentication. I have a class KerberosFilter that implements Filter. Are you quite positive you do not just want a SecurityRealm, as other SSOs do? When the user is

Re: RSS for all / RSS for failures

2014-08-01 Thread Jesse Glick
On Thu, Jul 24, 2014 at 4:16 PM, Daniel Beck m...@beckweb.net wrote: That entire feature would probably better off in a plugin... Amen to that, especially since its performance is horrible. -- You received this message because you are subscribed to the Google Groups Jenkins Developers group.

Re: How to launch on-demand slaves immediately when needed?

2014-08-01 Thread Jesse Glick
On Wed, Jul 23, 2014 at 6:52 AM, susann...@gmail.com wrote: When I launch a new job while slaves are offline they take about a minute to start launching. I think there is just a recurrent task that runs every 60s checking whether a slave should be brought online. Possibly this could be