Re: Problem with Clearcase plugin running many builds in parallel

2014-06-26 Thread Sascha Herrmann
Hi! I have quickly added a "Thread.sleep( 5000 )" into BaseSnapshotCheckoutAction#checkout() between endview and setcs on our build machine and will monitor if that improves things. Maybe ClearTool.endViewServer() would be the better place for that delay. Not sure. 5000 millis is probably too m

Re: AccuRev Automated Builds in Jenkins

2014-06-26 Thread Stephen Connolly
plugin is responsible for masking command line arguments that need masking. I had a quick look at the code and it looks like it "should" be masking correctly... though it is a good 5 years since I maintained that plugin. On 26 June 2014 21:28, David Simmon wrote: > So we've setup Jenkins, and

SVN Export only changes for Jenkins

2014-06-26 Thread Joey Daly
Hello, Just wanted to know if there's a way to only export the changed files from Jenkins? As I am FTPing files up I only want what files have changed from revision to revision. Currently this is a tedious manual process, I'd love to automate it with Jenkins, but I can't find any way to just ge

AccuRev Automated Builds in Jenkins

2014-06-26 Thread David Simmon
So we've setup Jenkins, and have it running a scheduled build on our AccuRev integration stream. We apparently ran into a network issue where it failed a build, and sent me an email letting me know that the build failed. The only problem I see, is that it has sent me the AccuRev login credent

Re: Build pipeline plugin ERR_CONTENT_DECODING_FAILED error

2014-06-26 Thread Jeff Storey
It actually looks like I ran into this bug https://issues.jenkins-ci.org/browse/JENKINS-20873. On Wed, Jun 25, 2014 at 7:58 PM, Daniel Beck wrote: > Please file a bug in Jira and provide a full explanation on how to > reproduce the issue starting with a blank Jenkins instance. (Please make > su

Looking for Jenkins contract instructor

2014-06-26 Thread jtodd
I am looking for an instructor who can teach Jenkins to a group of developers just starting with Jenkins. Any help would be appreciated. Thanks -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving

OWASP Dependency Check plugin DOA?

2014-06-26 Thread Rob Mandeville
When I am configuring a project and attempt to add a build step, one of the choices is "Invoke OWASP Dependency-Check analysis". When I select it, I do not get a new build step; nothing happens. My stack is: OWASP Dependency-check plugin 1.2.2 Jenkins 1.554 running as Windows service with no se

Re: "Execute Windows batch command" not executing

2014-06-26 Thread Notes Jonny
Hi Thank you for your reply. Someone else found same issue, seems multi-build is not reliable, so I changed to standalone builds. http://stackoverflow.com/questions/13756215/jenkins-console-output-is-virtually-empty On Wed, Jun 25, 2014 at 11:35 PM, Gavin Goodrich wrote: > Triggering default s

Re: "Execute Windows batch command" not executing

2014-06-26 Thread Notes Jonny
Hi Daniel Thank you for your reply. I found the issue, added it to ticket here: https://issues.jenkins-ci.org/browse/JENKINS-23540 Essentially the "Build multi-configuration project" seems very unreliable. As soon as I changed to "Build a free-style software project" my builds started working

Re: Failed to fetch from g...@github.com

2014-06-26 Thread John Meloro
Thank you for looking into this as well! [?] I will try to recreate your solution. Thanks again, John M. On Wed, Jun 25, 2014 at 1:43 PM, lochrann wrote: > Hi everybody. > > John, I've started reading Jenkins: The Definitive Guide today (I'm a > Jenkins newbie too) and I've had the very same

Re: Jenkins upgrade from 1.529 to 1.569

2014-06-26 Thread Bhavana Shrivastava
Thanks for the reply. On Thursday, 26 June 2014 16:19:50 UTC+5:30, Bhavana Shrivastava wrote: > > Hi, > > Currently we are using Jenkins 1.529. I want to upgrade it to Jenkins > 1.569. Is it possible to directly upgrade 1.529 to 1.569? > > Thanks! > -- You received this message because you are

Re: Not able to run MATLAB execution using shell script.

2014-06-26 Thread Vivekanand S V
If you can execute matlab using your user account from terminal and you are using the same accoutn while running the job, add this line in your "execute shell" step export PATH=$PATH:/usr/local/MATLAB/R2014a/bin/ That should point to the correct executable. You can try the above step even if you

RE: authentication, Jenkins CLI, and Windows

2014-06-26 Thread Ginga, Dick
My guess is that “anonymous” is the user when no other user is specified. With no authentication enabled, everything I do is done by “anonymous” From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Gavin Goodrich Sent: Wednesday, June 25, 2014 6:40 PM To:

Re: Jenkins upgrade from 1.529 to 1.569

2014-06-26 Thread Stephen Connolly
You should be ok, I would recommend backing up your Jenkins home just in case you have a "What da fuck did I just do" moment and decide you want to revert back... but in general you should be able to upgrade away... I would advise you are probably better on an LTS line... but totally up to you O

Re: Jenkins upgrade from 1.529 to 1.569

2014-06-26 Thread Daniel Beck
It should be. Give Jenkins time on first launch to finish loading, and check the logs for any (new) problems. Check out Manage Jenkins » Manage Old Data to see if some data became unloadable. Note that sometimes, plugins start misbehaving due to subtle changes in Jenkins core. If that happens,

Re: Not able to run MATLAB execution using shell script.

2014-06-26 Thread Rachit Kumar
Hello Richard, Modification: #!/bin/bash /usr/local/MATLAB/R2014a/bin/matlab -nosplash -nodisplay -r "InitFileName='model_init',VariableList={'motorspeed' 'motorpositions' 'voltage'},SimStart=0,SimEnd=20,ModelName='jenkins_test_model';jenkins_matlab" It gives the following error: [MATLAB_Jen

Jenkins upgrade from 1.529 to 1.569

2014-06-26 Thread Bhavana Shrivastava
Hi, Currently we are using Jenkins 1.529. I want to upgrade it to Jenkins 1.569. Is it possible to directly upgrade 1.529 to 1.569? Thanks! -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving ema

Re: Not able to run MATLAB execution using shell script.

2014-06-26 Thread Richard Bywater
Another option is just to change the shell script and put the path in there (e.g. change matlab to /opt/matlab/bin/matlab or whether the matlab executable is) Richard. On Thu, Jun 26, 2014 at 9:59 PM, Rachit Kumar wrote: > Frankly I am new to Jenkins and new to Linux environment as well! > How

Re: Not able to run MATLAB execution using shell script.

2014-06-26 Thread Rachit Kumar
Frankly I am new to Jenkins and new to Linux environment as well! How can I check what is th euserid jenkins is using and how do I set the PATH for that userid. Also I do not have root access, so will it be possible for me to change the PATH of Jenkins userid and and run the MATLAB simulation. T

RE: Not able to run MATLAB execution using shell script.

2014-06-26 Thread Matthew.Webber
Doesn’t matlab: command not found tell you what the problem is? If it works from the terminal but not under Jenkins, then the PATH is presumably different in the two cases. Did you try in from the terminal using the same userid that Jenkins runs under? From: Rachit Kumar [mailto:tihcar.ra...@gm

Not able to run MATLAB execution using shell script.

2014-06-26 Thread Rachit Kumar
Following is the shell script: #!/bin/bash matlab -nosplash -nodisplay -r "InitFileName='model_init',VariableList={'motorspeed' 'motorpositions' 'voltage'},SimStart=0,SimEnd=20,ModelName='jenkins_test_model';jenkins_matlab" This works fine when I execute it from Terminal, but throws following e

Add more categories in Test Result

2014-06-26 Thread 李解
Dear developers, My function test script generates a XML file which is transformed into another file "junitresult.xml" (by Jenkins somehow by default). As we can seen in the test result of each build, among all tests there are only Fail Skip Pass Total categories. However, is it possible t