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 to

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

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

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 tihcar.ra...@gmail.com wrote: Frankly I am new to Jenkins and new to Linux

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

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:

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 On

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

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: 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: 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: 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 gavingoodr...@gmail.com

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

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

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 m...@beckweb.net wrote: Please file a bug in Jira and provide a full explanation on how to reproduce the issue starting with a blank Jenkins instance.

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

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 david.c.sim...@gmail.com wrote: So