Re: URGENT: I am new for Jenkins and how to integrate soapui into jenkins.

2014-05-08 Thread Amit singh
Follow this link: http://softwaretestersforum.blogspot.in/2013/04/integrate-soapui-with-jenkins.html -Amit On Tuesday, May 6, 2014 5:29:08 PM UTC+5:30, vidhya radha wrote: Hi, I want to integrate SOAPUI into jenkins and how the build will run automatically if the person done any changes

WS file in jenkins WEB, but not in master/jobs/job nor slave/workspace

2014-05-08 Thread Jessarah Fl
I have a job and its workspace is accessible thru Jenkins WEB. I wanted to find the disk storage for those files, however I could not find it in slave/workspace/job nor in master/jobs/job I was originally in slave/workspace/job however it was deleted by jenkins?/plugin? however the files are

RE: Gerrit issue with drafts

2014-05-08 Thread Sandell, Robert
Perhaps Gerrit is sending patchset-created events to users that are invited to the draft change, and since one patch set is revealed to the Jenkins user and Jenkins then has posted a comment on the patch set it’s considered to be able to view the draft. Unless you have other reasons for using

Re: Want to schedule a Jenkins job which will run after every 5 seconds

2014-05-08 Thread Maciej Jaros
amol likhite (2014-05-08 05:51): Hi Mark, Thanks for the quick reply. I am currently executing the Jmeter scripts through Jenkins and showing the generated data on the web site for continuous monitoring. As per requirement some of the scripts need to be execute after every 5 seconds and some

Re: Want to schedule a Jenkins job which will run after every 5 seconds

2014-05-08 Thread amol likhite
Thanks for the reply... Thank you so much On Thu, May 8, 2014 at 4:16 PM, Maciej Jaros mac...@mol.com.pl wrote: amol likhite (2014-05-08 05:51): Hi Mark, Thanks for the quick reply. I am currently executing the Jmeter scripts through Jenkins and showing the generated data on the web

OOM: Permgen issues only when run as a Windows Service

2014-05-08 Thread James Green
I've got a Windows 8 Pro machine connected to our Jenkins 1.562 instance as a slave. The slave runs as a windows service. I have set MAVEN_OPTS as a system property variable. If I open an administrative cmd prompt and type 'set' included is the following: MAVEN_OPTS=-Xms1024m -Xmx1024m

Re: Abort a job when the job is running Groovy System scripts

2014-05-08 Thread Fredrik Andersson
Hi, I am implementing a custom *wait loop* to wait for triggered jobs in groovy. I am using the Groovy plugin and executing either as a Groovy system script or as a post build action. I have it all figured out but now I would like the wait loop to detect an abort request from the UI (Hitting the

Re: 561 seems to break remote parameterized plugin

2014-05-08 Thread Greg Dickie
Adding to my own post but it looks like this may be related to JENKINS-13546. On Wednesday, May 7, 2014 3:59:58 PM UTC-4, Greg Dickie wrote: Hi Ever since upgrading to 561 my remote build triggers are broken with: Building on master in workspace

Re: Jenkins service started and then stopped

2014-05-08 Thread Craig
Thanks KP this was a problem for me and clearing the Windows Event Logs allowed Jenkins to start. Interestingly nothing at all was written to any of the logfiles. On Wednesday, 18 May 2011 15:42:36 UTC+1, KP wrote: I had similar issues... nothing to see in the normal log, event log, etc...

RE: Permgen issues only when run as a Windows Service

2014-05-08 Thread Matthew.Webber
There are memory issues in 1.560/1.561/1.562 – see https://issues.jenkins-ci.org/browse/JENKINS-22734 From: James Green [mailto:james.mk.gr...@gmail.com] Sent: 08 May 2014 12:13 To: jenkinsci-users@googlegroups.com Subject: OOM: Permgen issues only when run as a Windows Service I've got a

Jenkins slave terminated error message

2014-05-08 Thread Lily Fu
I setup a Jenkins slave (windows server 2008 R2 Standard, with Java 7 update 55JRE), and was running successfully for a week or so. Today, I had trouble to start the slave, I got the following error message when I tried to start the slave From command line ( from web browser, I got Jenkins

Re: maven plugin - how to obtain the jenkins user name

2014-05-08 Thread Mauro Flores
I understand that maven and jenkins are unrelated projects. I've thought that when the maven plugin is running inside a job started by jenkins, the jekins running context could be available somehow for maven plugin code. For instance, each jenkins job runs in a different jvm, it would be easy

How to retrive all triggered jobs information using Jenkins API

2014-05-08 Thread Yang Li
Hi, After we applied the Jenkins upgrade from v1.480 to v1.532.3, I found the concept of Jenkins Groovy API ‘getDownstreamProject()http://javadoc.jenkins-ci.org/hudson/model/AbstractProject.html#getDownstreamProjects%28%29’ defined in AbstractProject

Re: maven plugin - how to obtain the jenkins user name

2014-05-08 Thread Larry Shatzer, Jr.
Look at https://wiki.jenkins-ci.org/display/JENKINS/Build+User+Vars+Plugin On Thu, May 8, 2014 at 10:29 AM, Mauro Flores mauroandreflo...@gmail.comwrote: I understand that maven and jenkins are unrelated projects. I've thought that when the maven plugin is running inside a job started by

RE: Jenkins slave terminated error message

2014-05-08 Thread Lily Fu
Ok, I am replying my message myself, it may help others: I checked MacAfee log file, didn't see blocked event; So I tried the first trick, restarted the Jenkins webserver, it worked. Lily From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Lily Fu

Re: xUnit - Failure

2014-05-08 Thread JonathanRRogers
On Wednesday, May 7, 2014 11:23:10 PM UTC-4, Vivek wrote: One of the possibilities can be that the some of the generated files may not be in proper junit format, this may happen when the test cases didnt run for a particular class so the xml is generated but is not complete (i.e., it

Re: Jenkins can't connect to a Git server via SSH using username/password

2014-05-08 Thread JonathanRRogers
- Original Message - From: jenkins...@googlegroups.com javascript: To: jenkins...@googlegroups.com javascript: At: May 7 2014 12:25:38 We are trying to connect to a Git repository via SSH (not Github) using username/password (we're not using keys) and the Git plugin but we're

Jenkins EMail-ext plugin sends groovy code in the Email body

2014-05-08 Thread AVG_Master
My Extended E-mail Notification 'Default Content' is set as below: html body *uExecution Results :/u*br Status : $BUILD_STATUSbr Tests run : $testCountbr Passed : $testPassedbr Failures : $testFailedbr Skipped : $testSkippedbr Build URL : $BUILD_URLbrbr /body /html My Extended E-mail

Re: maven plugin - how to obtain the jenkins user name

2014-05-08 Thread Mauro Flores
Look at https://wiki.jenkins-ci.org/display/JENKINS/Build+User+Vars+Plugin That's it!!! I just need to code this at my maven plugin: System.getProperty(BUILD_USER_ID). Thank you very much Larry. Thanks Gavriil Konovalenko, the plugin author. Jenkins is awsome! -- You received this

Re: Jenkins EMail-ext plugin sends groovy code in the Email body

2014-05-08 Thread Slide
Are you re-asking this question? On Wed, May 7, 2014 at 5:00 AM, AVG_Master a.velgan...@gmail.com wrote: My Extended E-mail Notification 'Default Content' is set as below: html body *uExecution Results :/u*br Status : $BUILD_STATUSbr Tests run : $testCountbr Passed : $testPassedbr

Using Warnings plugin with Token Macro Plugin

2014-05-08 Thread C dev
Hi, Currently we are using warnings plugin to list out all the new warnings and results. It looks good, but as the warnings keep increasing we wanted to flag those warnings as errors so they get immediate attention to be fixed. So tried to install the token macro plugin which I thought would

Re: Using Warnings plugin with Token Macro Plugin

2014-05-08 Thread Slide
The token macro plugin would need to know about the tokens you are mentioning. They would have to be implemented as token macros in some plugin. They aren't part of the token macro plugin by default. On Thu, May 8, 2014 at 5:01 PM, C dev cdev000...@gmail.com wrote: Hi, Currently we are using

Re: URGENT: I am new for Jenkins and how to integrate soapui into jenkins.

2014-05-08 Thread vidhya radha
Hi Amit, I have tried this link but it is not trigger the build automatically when the person changes the code. On Thursday, May 8, 2014 12:58:32 PM UTC+5:30, Amit singh wrote: Follow this link: http://softwaretestersforum.blogspot.in/2013/04/integrate-soapui-with-jenkins.html -Amit On