RE: Job profiler plugin

2013-12-19 Thread James Nord (jnord)
Obviously such a thing would probably only work for freestyle type builds. Maven2 builds the time is eaten in between every mojo execution so Sum(mojo time) (maven start time - maven end time). There can be a lot of overhead in here... /James From: jenkinsci-dev@googlegroups.com

Jelly: Why st:include inside j:forEach doesn't work?

2013-12-19 Thread octavian1001
Hello, I have a list of configuration files for 3 build rules. In future will be more than 3 rules, so I want to include the configurations using a forEach like this: j:forEach var=rule items=${it.rules} st:include page=config.jelly class=${rule.getClass().getCanonicalName()}/ /j:forEach

Re: Jelly: Why st:include inside j:forEach doesn't work?

2013-12-19 Thread Vivekanand S V
Is it going inside the for loop ? did you try printing the size of *it.rules* and *rule* and see the output, that may give you some clue. On Thu, Dec 19, 2013 at 2:41 PM, octavian1001 h.octav...@gmail.com wrote: Hello, I have a list of configuration files for 3 build rules. In future will be

Re: Backports for 1.532.2

2013-12-19 Thread ogondza
Tests looks good to me. Kohsuke, please post RC. https://jenkins.ci.cloudbees.com/job/core/job/jenkins_lts_branch/53/ -- oliver -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To unsubscribe from this group and stop receiving emails

Re: Jelly: optional section that depends on the current value in dropdown

2013-12-19 Thread Ulli Hafner
Your approach will not work. The UI examples plug-in shows how to achieve that. Have a look at the templates - f:dropdownList - f:dropdownListBlock Am 19.12.2013 um 00:50 schrieb Mathieu Wang mathieu.w...@ericsson.com: Hello everyone, So I have two f:select dropdowns. The first one is

Re: Jenkins mobile interface

2013-12-19 Thread Bruno Kühnen Meneguello
I have created an issue with the prototype: JENKINS-21092 https://issues.jenkins-ci.org/browse/JENKINS-21092 On Tue 17 Dec 2013 08:46:13 PM BRST, Bruno Meneguello wrote: I don't think so. If we define some guidelines to mobile interface, like vertical layout, large icons , less text and

Re: Jelly: Why st:include inside j:forEach doesn't work?

2013-12-19 Thread Jesse Glick
On Thu, Dec 19, 2013 at 4:11 AM, octavian1001 h.octav...@gmail.com wrote: st:include page=config.jelly class=${rule.getClass().getCanonicalName()}/ Odd. Try simply st:include page=config.jelly it=${rule}/ (or from=${rule} if you do not want to set the ${it} variable) -- You received this

Re: How to log information from a remoted task

2013-12-19 Thread Jesse Glick
On Wed, Dec 18, 2013 at 5:48 PM, Kaj Kandler kajkand...@conficio.com wrote: I'm trying to execute some steps in a builder with some Callable class. Is there any way to transport log information from this job? Can I access a logger somehow? Just use

Re: Publish over SSH Plugin needs a new maintainer

2013-12-19 Thread Slide
I was not using your patched version, I can take a look and merge stuff into the mainline. On Wed, Dec 18, 2013 at 2:05 AM, Alexander Fischer afischer...@gmail.comwrote: Hello, what are your build-problems? Or did you try my patched version? The Maven-build for my version should run

Re: Jelly: optional section that depends on the current value in dropdown

2013-12-19 Thread Mathieu Wang
Hi Ullrich, Thanks for the advice. But I have looked into that, and as I said, putting all the fields into a dropdownList will wrap them within one JSON object/array. My understanding is that it will involve moving all the frields from the DataBoundConstructor to another Describable object, say

Re: Jenkins mobile interface

2013-12-19 Thread Bruno Kühnen Meneguello
PR #1070 https://github.com/jenkinsci/jenkins/pull/1070 created with an already working prototype -- 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

Re: Pull Request: 882 seperate Cancel permission from Build permission for JENKINS-14713

2013-12-19 Thread Nickolay Rumyantsev
Hi Hangsu, I've recently faced the same issue using Jenkins 1.543. Is there any progress with your pull-request? Regards, Nickolay среда, 24 июля 2013 г., 20:40:04 UTC+4 пользователь Hangsu Ma написал: Hi All, Please let me know what do you think on this! *The reasons:* - On Jenkins

Re: credentials extension

2013-12-19 Thread Matthew Moore
So I've pushed oauth-credentials to my github ( https://github.com/mattmoor/oauth-credentials). I know Stephen has some feedback we still need to discuss, but I'd like to go through the ~release motions end-to-end to learn the process (both Jenkins and Maven). I think the next step on the Wiki

Re: How to log information from a remoted task

2013-12-19 Thread Kaj Kandler
Thanks Jesse, this sounds really promising, especially as your fix has also been included in 1509.4 LTS. However, it seems that the loggers you talk about end up in stdout (https://wiki.jenkins-ci.org/display/JENKINS/Logging). I was actually looking for something that transports the

Re: java.lang.OutOfMemoryError: PermGen space

2013-12-19 Thread nkokkella
Thanks for the comment but i tried before posted the query by setting JAVA_OPTS before running the ant script for the build but same error i am getting. On Thursday, December 19, 2013 12:56:13 PM UTC-5, Jeff MAURY wrote: This is an ant step so setting MAVEN_OPTS will have no effect Jeff

Re: How to log information from a remoted task

2013-12-19 Thread Jesse Glick
On Thu, Dec 19, 2013 at 2:00 PM, Kaj Kandler kajkand...@conficio.com wrote: it seems that the loggers you talk about end up in stdout Well, various places. I was actually looking for something that transports the listener.getLogger().println() to my jobs console. That is quite unrelated to

I want to add a new plugin (not yet ready to be released)

2013-12-19 Thread Hyunil Shin
Hello I want to add a new plugin, which is under development. Currently, it provides a very simple functionality. GitHub ID: anyone-can-test Repository: https://github.com/anyone-can-test/mypeople-plugin Anything that I should do to host plugin? Thank you~ -- You received this message