Re: Slave setup questions...

2012-12-11 Thread frank stockmans
I tend to run all my builds on slaves. - make sure the workspace on slaves is different from that on the master - have a recent version of java on the slave - be able to ssh to it and our .cshrc should throw any error's or messages to the terminal when you get there Slaves need to be able to get

Re: Jenkins CLI using REST APIs

2012-12-11 Thread Bharathi Ramalingam
Hi Mark, Thanks for your reply. I have found jenkins client implemented using Rest APIs here https://github.com/dlhartveld/jenkins-ws-client/tree/job-security after spending hours of search. Presently its not in a cli shape, but i could take this as a starting point and implement my own. T

Re: artifactory - cannot deselect publish build info

2012-12-11 Thread Evgeny Goldin
I'd post this question to http://forums.jfrog.org/Artifactory-Users-f2377369.html On Wed, Dec 12, 2012 at 3:11 AM, Russ Tremain wrote: > correction: jenkins artifactory version is 2.1.3, not 2.3.1. > Artifactory server is 2.6.3. > > > At 5:52 PM -0800 12/11/12, Russ Tremain wrote: > >Hi, > > >

Increment project version in svn through jenkins

2012-12-11 Thread Venugopal Madathil
Hi, After each build is complete i would like to increment the snapshot build number and for a stable one, build name with out snapshot. How can i do this from jenkins? It should basically update the project version in svn too. -- Cheers Venuz

Re: artifactory - cannot deselect publish build info

2012-12-11 Thread Russ Tremain
correction: jenkins artifactory version is 2.1.3, not 2.3.1. Artifactory server is 2.6.3. At 5:52 PM -0800 12/11/12, Russ Tremain wrote: >Hi, > >I've been experimenting with the Artifactory plugin. > >In the job configuration, I have set the following: > >Section "Build Environment": > > [

artifactory - cannot deselect publish build info

2012-12-11 Thread Russ Tremain
Hi, I've been experimenting with the Artifactory plugin. In the job configuration, I have set the following: Section "Build Environment": [x] Generic-Artifactory Integration". Section "Artifactory Configuration": [ ] Capture and publish build info When I save the config for

Re: avoid multiple git repositories in matrix project

2012-12-11 Thread Mark Waite
The cached copies reduce disc space usage even if they are out of date. The "git clone" will point to objects which exist in the "reference" repository if they are available there.  If the objects are not available in the reference repository, then the clone will copy that object from the origin

Kohsuke in London for a Jenkins User Event 16th Jan 2013

2012-12-11 Thread Alyssa Tong
Hi All, CloudBees, Cachet SW, and Xebia Labs are sponsoring a Jenkins user event in London. If you're in the area, we'd love to have you join Kohsuke for a morning learning and networking. http://www.cloudbees.com/jenkins-user-event-london.cb Hope to see you there. Regards, alyssa --

Re: avoid multiple git repositories in matrix project

2012-12-11 Thread KEVIN FLEMING (BLOOMBERG/ 731 LEXIN)
How do you keep these cached copies of the repositories up to date? - Original Message - From: jenkinsci-users@googlegroups.com To: jenkinsci-users@googlegroups.com At: Dec 11 2012 19:01:22 If your concern with multiple copies of the repository is due to disc space used by the git

Re: avoid multiple git repositories in matrix project

2012-12-11 Thread Mark Waite
If your concern with multiple copies of the repository is due to disc space used by the git objects (.git/objects/*), then you could use the Git plugin ability to reference another repository. I place a copy of the git repository in a well known location on each slave (typically /var/cache/git/

Slave setup questions...

2012-12-11 Thread Jeff
I'm starting to setup a new master/slave configuration using Ubuntu 12.10 + Tomcat 7. I couldn't find any real docs regarding slaves and could use some clarification on best practices particularly with tools. My builds use: Git or SVN Maven SVN Java 6 and 7 Additionally I have configured ANT fo

Jenkins plugin unable to read EMMA output file

2012-12-11 Thread ilikeflex
Hi I am using EMMA for code coverage. In my pom file i am using emma emma 2.0.5312 But the jenkins plugin page provide the emma plugin version 1.29. So my reports are being generated through POM but they are not being displayed and i am getting the exception. Caused by: org.xmlpull.v1.Xml

Re: Empty Aggregated Violations Report

2012-12-11 Thread Ryan Shoemaker
Downgrading to Violations plugin v0.7.10 fixed the issue. --Ryan

Get an Exception with Status Code 500 after setting a poll SCM build trigger then saving

2012-12-11 Thread Martin
I've added a build trigger of Poll SCM, then when I click save I get the following exception. (It doesn't make any difference what the schedule syntax is, currently its 1 * * * *). This happens every time, I've no idea how to proceed from here. Status Code: 500 Exception: java.lang.RuntimeExcep

avoid multiple git repositories in matrix project

2012-12-11 Thread Uwe Maurer
Hi, I have a git repository and want to use a matrix project to build about 30 different versions. How can I set this up so that jenkins does not need 30 different copies of the repository? One solution could be to create symlinks on the filesystem to point all versions to the same repository,

Re: Restarting/cleaning a slave VM after build?

2012-12-11 Thread giuliano
The trick is to not run the jenkins slave on the VM. If you run the jenkins slave on the VM, then when it reverts the TCP connection between master and slave dies, and jenkins get's very unhappy. What we do is for each VM we run the slave on a "vm controller". The controller then does something

Re: Jenkins-cli unable to login

2012-12-11 Thread bearrito
If I remember correctly, in order to user the CLI you had to enable anonymous read access. Have you done this? -b On Monday, December 10, 2012 5:06:04 AM UTC-5, Bharathi Ramalingam wrote: > > I am using Jenkins v1.493. > I have enabled LDAP credentials and set roles to set of users/group. > I

Re: GIT issues with a cloned job

2012-12-11 Thread bearrito
I'd make sure you don't have any processes that have locks on your key files (.rsa). Sometimes when Jenkins doesn't shutdown jobs correctly it will leave a process open that maintains the lock. I'd shutdown the jenkins slaves on the machines, then use whatever tool is appropriate for your OS t

GIT issues with a cloned job

2012-12-11 Thread Johannes Wienke
Hi everyone, we are successfully using GIT with several of our jobs but today we encountered a problem with a cloned matrix job. More specifically, we cloned a job, where the original job had a publicly accessible GIT repository, and after cloning changed the URL to a git repository accessible ove

Re: Jenkins CLI using REST APIs

2012-12-11 Thread Mark Waite
The two topics of your question seem to be the command line interface and REST API.  They seem to be almost independent questions to me. Can you explain further why you care how the command line interface is implemented?  It seems that if you need a command line interface, you will call it from

Jenkins CLI using REST APIs

2012-12-11 Thread Bharathi Ramalingam
Hi All, I am looking for cli for Jenkins using RESTful APIs. I have seen different cli implementations like, https://wiki.jenkins-ci.org/display/JENKINS/Nestor http://packages.python.org/autojenkins/intro.html and in-build cli also. But none of them suits my need. Please point me if there