how to use msysgit in Jenkins

2013-09-04 Thread Ho Yeung Lee
actually i am first time to use msysgit,where can find config in msysgit to set CVS in Jenkins? -- 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: how to use msysgit in Jenkins

2013-09-04 Thread Ho Yeung Lee
http://stackoverflow.com/questions/18606870/how-to-setup-jenkins-for-msysgit On Wednesday, September 4, 2013 2:04:24 PM UTC+8, Ho Yeung Lee wrote: actually i am first time to use msysgit,where can find config in msysgit to set CVS in Jenkins? -- You received this message because you are

Re: Browser not opening in Other machine

2013-09-04 Thread pradeep kattekola
ok. below are the steps i followed - Created one job in jenkins to run the webdriver code which was running proper in main machine ( in which jenkins is installed). i called the jenkins in other machine with main machine ip address:8080. when i am executing the same job from remote machine ,

Re: How to solve this msbuild.exe not recognized problem

2013-09-04 Thread Ho Yeung Lee
i solved by select msbuild name On Wednesday, September 4, 2013 12:35:58 PM UTC+8, Richard Bywater wrote: Hi It's only been just over an hour since you asked the first time. Please don't double post questions as it can make life harder for people trying to help you. Richard On

is Jenkins using the latest version from msysgit

2013-09-04 Thread Ho Yeung Lee
i set the command like this without environment variables such as %WORKSPACE%, the path is using C:\Users\LAB-User2\Documents\GitHub\testing005 C:\Users\LAB-User2\Documents\GitHub\testing005\.git C:\Users\LAB-User2\Documents\GitHub\testing005\Database3

shell execution produces couldn't flush stdout error

2013-09-04 Thread Matthias
Hello, when using pipes in shell scripts I often get the error mentioned in the subject line. To reproduce the issue add an execute shell build step to a new job and run the following: echo replace e by a | sed 's_e_a_g' | echo done This might not make much sense - but it generates the error

Re: Browser not opening in Other machine

2013-09-04 Thread Jonathan Rogers
pradeep kattekola wrote: ok. below are the steps i followed - Created one job in jenkins to run the webdriver code which was running proper in main machine ( in which jenkins is installed). i called the jenkins in other machine with main machine ip address:8080. when i am executing the same

Run Maven Job on multiple nodes

2013-09-04 Thread Gaurang shah
Hi Guys, Is there any way I can run one *maven *job on* multiple nodes parallel.* ?? I didn't find anything so I create new job *multi-configuration project, *however facing few question about that, would be glad if someone can explain things I have created two nodes and in the job i have

Help needed with MsBuild plugin

2013-09-04 Thread David Aldrich
Hi I have used Jenkins for a long time but am now using the MSBuild plugin for the first time, because we are migrating some build jobs from VC2008 to VC2010. I have added a 'MSBuild installation' in Jenkins with the following path: C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe In

How do I stop Jenkins?

2013-09-04 Thread Ed Keith
I can't figure out how to shut down Jenkins. Any help would be appreciated. -EdK -- 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: How do I stop Jenkins?

2013-09-04 Thread Ginga, Dick
From Manage Jenkins, select Prepare for Shutdown. This will prevent any more jobs from running. When all jobs are finished, you simply (on Windows) stop the service named Jenkins From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Ed Keith Sent:

Re: How do I stop Jenkins?

2013-09-04 Thread k . thieling
That depends on how you are running Jenkins. Windows service? / Linux? / Tomcat? / Inside some other container? - Original Message - From: Ed Keith e_...@yahoo.com To: jenkinsci-users@googlegroups.com Sent: Wednesday, September 4, 2013 7:31:02 AM Subject: How do I stop

RE: How do I stop Jenkins?

2013-09-04 Thread David Aldrich
Does your Jenkins master run on Windows or Linux? David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Ed Keith Sent: 04 September 2013 13:31 To: jenkinsci-users@googlegroups.com Subject: How do I stop Jenkins? I can't figure out how to shut down

Re: How do I stop Jenkins?

2013-09-04 Thread Ed Keith
I running on Mac OS X 10.6.8. On Wednesday, 4 September 2013 08:31:02 UTC-4, Ed Keith wrote: I can't figure out how to shut down Jenkins. Any help would be appreciated. -EdK -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To

Re: How do I stop Jenkins?

2013-09-04 Thread Ed Keith
I do not see jenkins listed in the Activity Monitor, so I can not kill it there. -EdK On Wednesday, 4 September 2013 08:49:48 UTC-4, Ed Keith wrote: I running on Mac OS X 10.6.8. On Wednesday, 4 September 2013 08:31:02 UTC-4, Ed Keith wrote: I can't figure out how to shut down

Re: How do I stop Jenkins?

2013-09-04 Thread k . thieling
Not too familiar with running the Jenkins app on Mac, only Mac slaves, but if you can get to command line you should be able to run something like: ps -ef | grep Jenkins then kill that process... - Original Message - From: Ed Keith e_...@yahoo.com To:

RE: How do I stop Jenkins?

2013-09-04 Thread david.doughty
How did you start Jenkins? . . . . Assuming you did something like Java -jar Jenkins.war From the command line ps -aef | grep Jenkins.war identify the process and Kill -9 process dD From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Ed Keith Sent:

Re: How do I stop Jenkins?

2013-09-04 Thread Ed Keith
Thank, I used ps to find the process, and killed it. But it restarted (new pid). Something is clearly restarting it and I do not know what. Thanks for getting me this far. -EdK On Wednesday, 4 September 2013 08:55:06 UTC-4, KT wrote: Not too familiar with running the Jenkins app on Mac,

ERROR: Processing failed due to a bug in the code Jenkins 1.509.2

2013-09-04 Thread Mehdi Hayani
Hii, Recently I'm getting the following error with my Jenkins (v1.509.2): ERROR: Processing failed due to a bug in the code. Please report this to jenkinsci-users@googlegroups.com java.lang.NullPointerException: no workspace from node hudson.slaves.DumbSlave@bc0a0e30 which is computer

Re: How do I stop Jenkins?

2013-09-04 Thread Ed Keith
I used launchctl to get rid of it. Thank you! -EdK On Wednesday, 4 September 2013 09:11:55 UTC-4, KT wrote: This might be a possibility on the Mac: sudo launchctl unload /Library/LaunchDaemons/org.jenkins-ci.plist -- *From: *Ed Keith e_...@yahoo.com

Re: How do I stop Jenkins?

2013-09-04 Thread k . thieling
Awesome, to start it back up then, you should be able to run: sudo launchctl load /Library/LaunchDaemons/org.jenkins-ci.plist - Original Message - From: Ed Keith e_...@yahoo.com To: jenkinsci-users@googlegroups.com Sent: Wednesday, September 4, 2013 8:25:04 AM Subject: Re:

Add Version to a maven build war file in Jenkins

2013-09-04 Thread Kamal Ahmed
Hi, I am using Jenkins to build a war file for deployment via puppet. Would be good to have version information appended to the war file. Is there a plugin that does this ? Does anyone have such experience of versioning the war file in Jenkins Thanks, -Kamal. -- You received this message

Re: Git push back changes

2013-09-04 Thread David Karlsen
My config: Repository url: http://username:credenti...@test.fswiki.evry.com:7990/scm/tac/tac-jfr-server.git name: stash branches to build: stash/topic/** stash/dev under 2nd advanced I have: Checkout/merge to local branch (optional): master (tried with and w/o value here) Config user.name Value:

RE: is Jenkins using the latest version from msysgit

2013-09-04 Thread Dhrutiben.Patel
What version are you using? I remember , I had difficulty using 1.528 with Copy Artifact plugin. You might want to check open issue related to Jenkins latest version. Let us know whether this helped or not. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On

RE: Help needed with MsBuild plugin

2013-09-04 Thread David Aldrich
Do you use the MSBuild plugin or just specify a 'Windows batch command' build step? Does your path variable on your slave include: C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\BIN; ? From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of

RE: Help needed with MsBuild plugin

2013-09-04 Thread David Aldrich
I think there is not much to say. The master configuration sets the MSBuild path to: C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe The build step is: MS Build file: MSVC\MyProj.sln Command line arguments: /p:Configuration= release /p:useenv=true

RE: Help needed with MsBuild plugin

2013-09-04 Thread Dhrutiben.Patel
Can you provide configuration settings for your job , if possible? And what are the steps you are adding for MSBuild? From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Aldrich Sent: Wednesday, September 04, 2013 7:49 AM To:

RE: Help needed with MsBuild plugin

2013-09-04 Thread David Aldrich
Hi Thanks for your reply. Yes, I had already done that. David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of dhrutiben.pa...@wellsfargo.com Sent: 04 September 2013 15:41 To: jenkinsci-users@googlegroups.com Subject: RE: Help needed with MsBuild

RE: Updated free cloubbees folders plugin, now folders don't appear, NoClassDefFoundError in log.

2013-09-04 Thread Haszlakiewicz, Eric
-Original Message- From: Jesse Glick [mailto:jgl...@cloudbees.com] On Tuesday, September 3, 2013 2:26:20 PM UTC-4, Haszlakiewicz, Eric wrote: SEVERE: Failed Loading job zw java.lang.NoClassDefFoundError:

GUI testing on a linux slave

2013-09-04 Thread Trystan L.
Hi, I use a master to build and test on two slaves: - Linux slave launched via ssh - Win7 as a windows service I am performing some UI tests on both, no problem on Win7 slave but it fails on linux one. I tried vnc plugin and start a session before the build but nothing better, idem

Re: Git push back changes

2013-09-04 Thread David Karlsen
And upgraded git plugin to 1.5.0. Does it look right? 2013/9/4 David Karlsen davidkarl...@gmail.com My config: Repository url: http://username:credenti...@test.fswiki.evry.com:7990/scm/tac/tac-jfr-server.git name: stash branches to build: stash/topic/** stash/dev under 2nd advanced I

Jenkins: yum install can't find dependencies (libhpi, libjava, etc. all in $JAVA_HOME)

2013-09-04 Thread Katie Soto
I'm having a seemingly simple problem that I just can't figure out. I have a Java project that I needs these libraries: libhpi libjava libverify libjvm These are all located in: $JAVA_HOME/jre/lib $JAVA_HOME/jre/lib/amd64 $JAVA_HOME/jre/lib/amd64/native_threads $JAVA_HOME/jre/lib/amd64/server

Re: GUI testing on a linux slave

2013-09-04 Thread Richard Lavoie
Did you set the environment variable DISPLAY to redirect the display of your UI application to the VNC and/or XVFB display ? On Wed, Sep 4, 2013 at 12:44 PM, Trystan L. tans...@gmail.com wrote: Hi, I use a master to build and test on two slaves: - Linux slave launched via ssh - Win7

Re: jenkins and clearcase plugin

2013-09-04 Thread Larry Brigman
Ok. I'm looking at the info from the config page-System Info and the path doesn't show /usr/atria/bin. I added that to the path in the init script but it doesn't seem to get added to jenkins when I restart the service. The cleartool path is set as part of the config The path variable only shows

Re: jenkins and clearcase plugin

2013-09-04 Thread Larry Brigman
Finally got it. Had to hack the init script to declare the PATH variable on the invocation line by pre-pending it to the JAVA_CMD. runuser was wiping out the PATH variable. There probably should be a better way to do this. Here is my change in the init script to get clearcase to function

Re: Jenkins: yum install can't find dependencies (libhpi, libjava, etc. all in $JAVA_HOME)

2013-09-04 Thread Larry Brigman
If it builds on this box then the library is there but not being declared by the installing package. You will need to adjust your rpm dependency list. find the library then use rpm -qf libhpi.so to find the package. Then list the provides list of that package. Adjust the spec file dependency

Re: Jenkins: yum install can't find dependencies (libhpi, libjava, etc. all in $JAVA_HOME)

2013-09-04 Thread Katie Soto
Awesome! Thanks, I'll give it a try! On Wednesday, September 4, 2013 12:38:55 PM UTC-7, Larry Brigman wrote: If it builds on this box then the library is there but not being declared by the installing package. You will need to adjust your rpm dependency list. find the library then use

Re: jenkins and clearcase plugin

2013-09-04 Thread Richard Bywater
Does sticking the PATH statement in /etc/environment help? (I can't remember if that gets invoked in this particular case though) Richard. On Thu, Sep 5, 2013 at 7:25 AM, Larry Brigman larry.brig...@gmail.comwrote: Finally got it. Had to hack the init script to declare the PATH variable on

RE: How do I stop Jenkins?

2013-09-04 Thread Dhrutiben.Patel
How about JenkinsURL\exit - it shut downs first Once it is shut down then go to build server and check in Task Manager whether there is any Java.exe and Jenkins.exe still running? If Jenkins.exe is running then you might want to check services.msc option to see Jenkins is set to run as windows

Re: How do I stop Jenkins?

2013-09-04 Thread Richard Bywater
Personally I wouldn't kill -9 the process straight away as then the process has no chance to clean up after itself... On Thu, Sep 5, 2013 at 12:57 AM, david.doug...@barclays.com wrote: How did you start Jenkins? . . . . Assuming you did something like Java –jar

how to solve this msbuild problem in Jenkins

2013-09-04 Thread Ho Yeung Lee
http://stackoverflow.com/questions/18608203/build-failed-in-cmd-though-f5-deploy-success-in-visual-studio-2012 -- 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: Help needed with MsBuild plugin

2013-09-04 Thread Mark Waite
Isn't the message error TRK0005: Failed to locate: CL.exe. The system cannot find the file specified.  an indication that you may have failed to call vcvarsall.bat for your specific Visual Studio before starting the Jenkins slave agent on that machine? I thought that Visual Studio used that

Re: Git push back changes

2013-09-04 Thread Mark Waite
I think the key problem in that list is using jgit executable.  The jgit implementation in the current released Git plugin is not able to push to a central repository, along with many other limitations. You'll need to use the command line git implementation if you want to push back to a