Re: Problem with Clearcase plugin running many builds in parallel

2014-06-27 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

Re: SVN Check out issue

2014-06-27 Thread Panikera Raj
Hi Niel, Now I am running through master even though I am not able to ran I am getting same exception. And as you said, Where I need to pass the credentials for Jenkins. For Cygwin if I pass once, It's not asking second time onwards How to handle.. I got struck here.. Please suggest me on this.

Jenkins 1.568 does not use latest svn repo format

2014-06-27 Thread Notes Jonny
Hello I installed Jenkins 1.568 on a Windows7 machine that has latest TortoiseSVN. Unfortunately I see Jenkins is using a much older repo format. Could Jenkins be updated to use latest SVN repo format? It is very inconvenient that I can't commit files that I modify in the Jenkins checkout.. Jon

RE: Jenkins 1.568 does not use latest svn repo format

2014-06-27 Thread Matthew.Webber
The SVN format can be specified through the web interface at Manage Jenkins -- Configure System -- Subversion Workspace Version. Although I think that commit files that I modify in the Jenkins checkout is a non-standard workflow that you might want to rethink. Can you explain why you're doing

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

2014-06-27 Thread Rachit Kumar
Hello Guys, Thanks a lot for your input, the issue has been resolved. The problem is in the Project configuration. It was configured for Windows and I was running it on Linux. Sorry for your time, thanks a lot! On 26 June 2014 14:47, Vivekanand S V svvivekan...@gmail.com wrote: If you can

JobConfigHistory not available for maven projects

2014-06-27 Thread Òscar Picassó
Hi, I have installed the JobConfigHistory plugin. The job config history is now available for free style projects but for maven projects the config history displays No job configuration history available. Versions: Jenkins: 1.532.2 JobConfigHistory Plugin: 2.6 Maven Project Plugin: 2.0 What

HTML formatting not working in Jenkins 1.568

2014-06-27 Thread Notes Jonny
Hello I am migrating from Hudson and also a Jenkins 1.459 to Jenkins 1.568 I found that my HTML formated messages that I added to each build configuration and also the System Message (Under Manage Jenkins) does not display. In fact I see the HTML codes directly on the page. Any ideas? Jon --

Re: AccuRev Automated Builds in Jenkins

2014-06-27 Thread David Simmon
I do see now looking at https://wiki.jenkins-ci.org/display/JENKINS/Accurev+Plugin that it has a link to GitHub and Issue Tracking. Should I submit this as an issue? It doesn't look like it's been released since 12/19/2013, so I'm not certain how active Scott and Clint are. Also, looking

jenkin emails

2014-06-27 Thread Nikhil Shah
Hello, I had a quick question relating to jenkins and github. We've got a lot of our projects tied to our github repo. With that said, some of our folks use their personal github account granted access to our private repos. We've noticed that jenkins actually uses the email addresses from

Re: jenkin emails

2014-06-27 Thread Slide
If you provide a valid email in the Person area for your users, it should use that email address. The other option would be to install the mailmap address resolver plugin and map the usernames to correct email addresses there. On Fri, Jun 27, 2014 at 7:58 AM, Nikhil Shah ns...@theorchard.com

Re: Looking for Jenkins contract instructor

2014-06-27 Thread Schalk Cronjé
It would help if you state where you are based. If would be easier for lurking instructors to reach out to you, rather than getting arbitrary emails from all over the world :) On Thursday, 26 June 2014 18:08:50 UTC+1, jtodd wrote: I am looking for an instructor who can teach Jenkins to a

Re: Jenkins 1.568 does not use latest svn repo format

2014-06-27 Thread Notes Jonny
It is somewhat tricky to integrate out-of-date Jenkins with svn and TortoiseSVN e.g: svn: E155036: Please see the 'svn upgrade' command svn: E155036: The working copy at '/cygdrive/c/jenkins/sdk_build' is too old (format 29) to work with client version '1.8.9 (r1591380)' (expects format 31). You

Jenkins Single sign on issue

2014-06-27 Thread swaroop Ch viswa
Hi, I deployed jenkins1.569 on weblogic server 10.3. and configured Active Directory of our group on the security. I have two issues here. 1.Single sign on set up 2.403 error 1.How can i set up a single sign on feature for weblogic/jenkins console for our group? does configuration might help

Re: HTML formatting not working in Jenkins 1.568

2014-06-27 Thread Daniel Beck
Install the anything-goes-formatter plugin, and change the formatter used in global security preferences. On 27.06.2014, at 15:26, Notes Jonny jong...@gmail.com wrote: Hello I am migrating from Hudson and also a Jenkins 1.459 to Jenkins 1.568 I found that my HTML formated messages that I

Re: Jenkins 1.568 does not use latest svn repo format

2014-06-27 Thread Daniel Beck
Downgrade TortoiseSVN, or install another SVN (1.7) client to modify the working copies used in Jenkins. Jenkins Subversion Plugin does not support SVN 1.8. On 27.06.2014, at 19:49, Notes Jonny jong...@gmail.com wrote: It is somewhat tricky to integrate out-of-date Jenkins with svn and

A build's queue timestamp via $URL/job/$job_name/$build_number/api/xml

2014-06-27 Thread DarrelVun
How can I see when each individual build was queued? I want to see it after-the-fact via the REST API. I can see (via timestamp) when it started building. This is a different question than how long is your queue or do you have enough slave-nodes. Any suggestions, please? Regards,

Issue with using REST API to schedule multiple jobs

2014-06-27 Thread Naomi Chopra
I am using Jenkins REST API to schedule jobs on behalf of multiple users. If I schedule the build jobs for the same project in a loop (without delay) with the same parameters but different users, Jenkins combines all the jobs and just runs one job. If I change the parameters or add considerable

Re: Issue with using REST API to schedule multiple jobs

2014-06-27 Thread Benjamin Lau
Try adding an extra parameter that's always different. Some people use a time counter. I've used a hash of the time, user, and other parameters. That should guarantee that each job has a unique parameter set and overcome the problem. I think you can also use the Random String Parameter Plugin[1]