RE: Avoid script shell build failure

2013-07-25 Thread Adrien Ruffié
Yes you’re right and it avoids if loop. Thank De : jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] De la part de JonathanRRogers Envoyé : mercredi 24 juillet 2013 18:55 À : jenkinsci-users@googlegroups.com Cc : dirk.heinri...@recommind.com Objet : Re: Avoid

Releasing javadoc step doesn't finish ?

2013-07-25 Thread Adrien Ruffié
Hello, During my release job in jenkins all work fine but at the end of maven prepare:release, my job work indefinitely on this last line I think: [INFO] [WARNING] Source files encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! More log

Filter Matrix Job using Extended Choice Parameter

2013-07-25 Thread mwinston
Hi, I have tried to find greater detail on how to setup my Groovy Filter expression, but I cannot, so I am coming here. I have a parent job that uses the the Parameterized Trigger plugin to kick off a Matrix build. This parent job, also uses the Extended Choice Parameter checkbox. I am trying

Critical problem with my Jenkins server

2013-07-25 Thread Mehdi Hayani
Hi Team, I'm managing a Jenkins instance (version 1.480.2) which holds 263 jobs from different projects. These jobs are configured to run on every SCM change. All the builds turn on slaves and the Master is used only to hold the Tomcat 6 server where Jenkins is running. I thought that this would

Re: Critical problem with my Jenkins server

2013-07-25 Thread Mark Waite
If you're using Git for SCM, then you can reduce the polling significantly using a post-receive hook in your git repositories.  See [1] for more information If you're keeping a long job history, you can reduce memory requirements by reducing the amount of history you are retaining. Later long

Re: Critical problem with my Jenkins server

2013-07-25 Thread Mark Waite
That should be 1.509.2 rather than 1.509.3 for the most recent available LTS version. Mark From: Mark Waite markwa...@yahoo.com To: jenkinsci-users@googlegroups.com jenkinsci-users@googlegroups.com Sent: Thursday, July 25, 2013 5:14 AM Subject: Re: Critical

Re: Critical problem with my Jenkins server

2013-07-25 Thread Steffen Breitbach
On Thu, 2013-07-25 at 04:14 -0700, Mark Waite wrote: If you're using Git for SCM, then you can reduce the polling significantly using a post-receive hook in your git repositories. The same is true for SVN, of course. -- You received this message because you are subscribed to the Google

Re: Multiple threads restricted to a single core

2013-07-25 Thread David Auzinger
Btw. im launching via Maven on the server too. On Thursday, 25 July 2013 13:41:44 UTC+2, David Auzinger wrote: Hello! I've run into a problem while using Jenkins as a means to automate a JUnit/Selenium test. I'm working on an automated test for a Webshop using the Selenium WebDriver. I

Jenkins release plugin with promoted build parameter

2013-07-25 Thread Tomas Vlach
Hi All, I am trying to use the Promoted Build Parameter parameter type in Jenkins release plugin. What I am trying to do is let a user, who intends to initiate a Release build, select an existing promoted build, and then perform the release build on the same SVN revision number, that the

Re: Job Inheritance

2013-07-25 Thread Nor-man
Hello everyone, There have been some updates to the plugin that was mentioned by Derek. * Wiki: https://wiki.jenkins-ci.org/display/JENKINS/inheritance-plugin * Releases: http://repo.jenkins-ci.org/releases/hudson/plugins/project-inheritance/ * Presentation:

Re: Critical problem with my Jenkins server

2013-07-25 Thread Mehdi Hayani
Okk thank you for the quick answer, I'll try these implementing these recommendations, One last question, shouldn't I also change tomcat options, I means -Xms -Xmx -XX:MaxPermSize ?? Regards, Mehdi -- You received this message because you are subscribed to the Google Groups Jenkins

RE: Hudson Promotion

2013-07-25 Thread deevant07
Hi Adam, I've a problem like you: Promote old builds! When I select a designed build and then I click on promotion link only the latest build is deployed, thus, I'm lost in a way to promote old builds. Can you help me to promote a old build? If you can send me a promotion script/ configuration

Re: Critical problem with my Jenkins server

2013-07-25 Thread Mehdi Hayani
I'm keeping 10 builds/ job, Do you think that this number needs to be reduced ? -- 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

Re: Critical problem with my Jenkins server

2013-07-25 Thread Vincent Latombe
looks good, however you should increase memory settings. Vincent 2013/7/25 Mehdi Hayani hayani.mehdi...@gmail.com I'm keeping 10 builds/ job, Do you think that this number needs to be reduced ? -- You received this message because you are subscribed to the Google Groups Jenkins Users

Build Flow Plugin

2013-07-25 Thread dbpatel
Wondering if we can pass in an environmental variable as the job name? I.e. build(createRelease) build(build-release_v$NEW_RELEASE_VER) Little background: I've tried passing that parameter into a static job name like build-release but when you use multiple SCM's build params don't work for

Re: Build Flow Plugin

2013-07-25 Thread dbpatel
Sorry found the solution. The environmental variable was not visible from the EnvInject plugin setting it? Seems to be working in other areas but not with this plugin. I had to do a workaround. I first wrote the variables to a file an EnvInject plugin script. Then I read it in via groovy.

Configuration Matrix - Same job with sequential and parallel runs

2013-07-25 Thread Rayees Namathponnan
Hi All, I am using Configuration Matrix plugin to run our automation suites, but there are few suite i need to execute in sequential due to some restart task in that test case and remaining need to be executed in parallel, same time; i need a consolidated report; Is it possible to add my both

Re: Configuration Matrix - Same job with sequential and parallel runs

2013-07-25 Thread Rayees Namathponnan
Looks like we cannot use this with Matrix combination On Thursday, July 25, 2013 11:54:37 AM UTC-7, LesMikesell wrote: On Thu, Jul 25, 2013 at 1:45 PM, Rayees Namathponnan ryz.n...@gmail.com javascript: wrote: I am using Configuration Matrix plugin to run our automation suites, but

bug? batch command calling child batch script with labels

2013-07-25 Thread fishnochips
is this a bug? - create batch script with labels in a job's workspace -- have the script jump forward to a label later in the same script - configure the job to have a single batch command which calls this batch script (above) twice -- echo that you're about to call - run the job

Re: Configuration Matrix - Same job with sequential and parallel runs

2013-07-25 Thread Les Mikesell
On Thu, Jul 25, 2013 at 2:05 PM, Rayees Namathponnan ryz.nama...@gmail.com wrote: Looks like we cannot use this with Matrix combination Not sure - I hadn't tried using a matrix job as one of the sub-builds and don't see it mentioned in the docs. If not, you'd have a tradeoff between having to

Re: bug? batch command calling child batch script with labels

2013-07-25 Thread fishnochips
here's a different issue: - create a batch file in a job's workspace that jumps to a label near the end - configure the job with a batch command that does two things - calls the child batch file in the first bullet - echos something - run the job the job will execute

Re: Multiple threads restricted to a single core

2013-07-25 Thread JonathanRRogers
On Thursday, July 25, 2013 7:41:44 AM UTC-4, David Auzinger wrote: Hello! I've run into a problem while using Jenkins as a means to automate a JUnit/Selenium test. I'm working on an automated test for a Webshop using the Selenium WebDriver. I wrote the test multithreaded to us all

Re: Multiple threads restricted to a single core

2013-07-25 Thread David Auzinger
Thanks for the response! Hmm, haven't checked that yet, but i will do it as soon as I get back to it tomorrow (I'm in europe). What i can tell you is that i started the process via mvn test as a Jenkins build and spawned subthreads from this one. On Jul 25, 2013 10:15 PM, JonathanRRogers

Re: bug? batch command calling child batch script with labels

2013-07-25 Thread fishnochips
discovered that preceding the call to the child batch script with cmd /c appears to handle both issues. -- 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

[ANN] Beta testing of Git plugin 2.0

2013-07-25 Thread Kohsuke Kawaguchi
Hi, We've been working on a major improvement on Git plugin, and it's now at the point that it's ready for general consumption. As Git plugin is used by many and we want to reduce the chance of regressions, I'm calling for people to try out this unreleased Git 2.0 plugin. Please see [1]

Re: [ANN] Beta testing of Git plugin 2.0

2013-07-25 Thread Stephen Connolly
Did you get credentials integration in yet... If not I would like to try and get it in for the next beta... and which branch is it so I can try to start tomorrow On 25 July 2013 23:40, Kohsuke Kawaguchi kkawagu...@cloudbees.com wrote: Hi, We've been working on a major improvement on Git

RE: Hudson Promotion

2013-07-25 Thread Adam Purkiss
I did this 4 years ago. A lot has likely changed since then but the only help I can offer at this time is to repost what I did then. I have not used it in a long time... I found that with the Promotion plugin I could not do it but for the Promoted Builds Simple Plugin it can be done. You just

Re: [ANN] Beta testing of Git plugin 2.0

2013-07-25 Thread Kohsuke Kawaguchi
It supports per-project credential. The only problem is that there's currently no implementation of the HTTP BASIC auth credential. So I'm reusing the credential for SSH password authentication for this purpose. If you are at at it, please add that in the credentials plugin. The branch in

Re: [ANN] Beta testing of Git plugin 2.0

2013-07-25 Thread Mark Waite
The wiki page specifies Git Client plugin 1.1. but I only see Git Client 1.1 on the updates site, even when I went to the advanced section of the manage plugins page and pressed Update Now.  I see that the 1.1.1 release only recorded on GitHub about 4 hours ago. Is there an estimate for how