P4TICKET variable use with Jenkins

2012-10-05 Thread Raj
Hi, I dont want to set the P4PASSWD in jobs instead i want to P4TICKET variable which is set to $HOME/.p4tickets should be used all the time. So i provide only USERNAME/PORT in job configuration. But i am getting error such as below; (Jenkins is setup in windows) Started by user anonymous

how to handle C# project dependencies

2012-10-05 Thread Kenneth
Hi All I've got one job building a dll, that uses a dll that i have stored as an artifact, and gotten into the outputfolder for that job. It still complains about the dependency when compiling though. how should i workaround that? C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Commo

Re: Maven Post Action Deploy?

2012-10-05 Thread David Doughty
So after a little googling around, this appears to be a repeatable problem, in that the redeploy publisher no longer reverts to the global settings.xml file, which is a pain in the arse. WE can resolve this by copying the settings.xml into .m2, which isn't really a good as a long term solution.

Re: SVN trigger for some builds, poll for others?

2012-10-05 Thread Ari Maniatis
I am resurrecting this old thread, since I don't think this was ever settled. I too would like to be able to have two jobs, one which is triggered by an SCM hook and the second one which polls the SCM once a day for Sonar reporting. Build trigger options are: Trigger builds remotely (e.g., from

Unable to delete unicode files during workspace cleanup

2012-10-05 Thread grayaii
Hi, We have a bunch of files with unicode character's in its name. We use the Perforce plugin (version 1.3.7) to "Clean Workspace Before Each Build". The job fails like so (I put the "..." to hide the full path, but you get the drift): java.io.IOException: Unable to delete /.../XmlParseUtilityTest

Re: Jenkins + Email-ext - How to configure per-project settings?

2012-10-05 Thread Dan
Was there ever any resolution here? I'm having similar symptoms: set up global settings, checked the per-project checkbox, not getting any extended info in the emails. We're running Jenkins 1.447, email-ext 2.24.1. On Tuesday, May 15, 2012 4:02:54 PM UTC-5, slide wrote: > > Yes, EVERYONE who upg

Get the label that choose node to build on

2012-10-05 Thread peter
Hi, Just wondered if anyone knew how (via the Jenkins model & groovy) to detect why a build built on a certain node. Not the cause but the label. I am trying to do some load reporting on our build farm and would like to be able to report on which labels are responsible for the most builds. T

RE: Jenkins + Email-ext - How to configure per-project settings?

2012-10-05 Thread Alex Earl
This issue was that the email-ext couldn't be added to post build actions. If you have added it, and you are getting the emails, then you are not seeing this issue. The default email content for email-ext is not much different from the default mailer, you have to configure it how you want. Sent fr

Re: Jenkins + Email-ext - How to configure per-project settings?

2012-10-05 Thread Marek Gimza
I have noticed the same problem with other plugins on former versions of Jenkins/Hudson. With some plugins, the configuration web page may work in Firefox, but not in IExplorer ... and visa verca. I have had to un-install and install different versions of Hudson/Jenkins to get things to properly

Re: Perforce changes since last successful build

2012-10-05 Thread Rob Petti
email-ext is capable of sending changelog information to the list of committers. On Thursday, 4 October 2012 08:28:07 UTC-6, Richard Schoeller wrote: > > Does anybody have a recipe for getting the Perforce changelists since the > last successful/stable build. I'd like to include that informatio

Re: P4TICKET variable use with Jenkins

2012-10-05 Thread Rob Petti
P4TICKET is interpreted by p4 as the actual value of the ticket (which is a hex string). The variable you are looking for is called "P4TICKET*S*". On Friday, 5 October 2012 01:22:33 UTC-6, Raj wrote: > > Hi, > > I dont want to set the P4PASSWD in jobs instead i want to P4TICKET > variable which

Re: P4TICKET variable use with Jenkins

2012-10-05 Thread Richard J
My understanding is that P4TICKET doesn't point to a file, but instead, is defined as the ticket value itself, a 32 char hex string. No?

Re: no code analysis showing up with my builds

2012-10-05 Thread Dirk Weigenand
Hi, i cloned your project from github and created a job for it in my jenkins instance. The job is of type maven 2/3, git is configured to a repository location of file:///tmp/murmur-events. I left the build configuration at default values (maven 3: a local maven 3 installation) and the default r

Re: P4TICKET variable use with Jenkins

2012-10-05 Thread Rob Petti
Exactly. P4TICKETS is the variable that should be set to the location of the ticket file, not P4TICKET. http://www.perforce.com/perforce/r12.1/manuals/cmdref/env.P4TICKETS.html On Fri, Oct 5, 2012 at 2:12 PM, Richard J wrote: > My understanding is that P4TICKET doesn't point to a file, but inste

Do failures mark upstream builds as unstable?

2012-10-05 Thread Todd Greer
Are unstable or failed downstream jobs supposed to automatically mark upstream jobs as unstable? My intuition says yes, my testing says no, and what I've read online seems to say both yes and no. I've got a simple chain of two freestyle jobs: "build" and "test". They build and test the applicat

Can I use the same job names on many slaves (i.e. in an OO manner)?

2012-10-05 Thread zperry
We are POCing a Jenkins build farm that consists of 1 master, 2 slaves. We use Jenkins mainly to monitor our C++ builds. Our software targets many different Linux and FreeBSD distributions and releases, so we can see that Jenkins can help boost our efficiency significantly. But while testing i

Re: Can I use the same job names on many slaves (i.e. in an OO manner)?

2012-10-05 Thread Richard Lavoie
There are plugins to help you do that. Mainly there is the matrix job plugin which allows you to run the same job accordin to different axis (the axis you are looking for is node or label) By default the queueing system of jenkins tend to reuse the same node it executed the job before to preven

RE: Can I use the same job names on many slaves (i.e. in an OO manner)?

2012-10-05 Thread Nord, James
It sounds like you want a multi-configuration project with the node set as one of your axis. /James From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of zperry Sent: 05 October 2012 22:22 To: jenkinsci-users@googlegroups.com Subject: Can I use the same

Re: no code analysis showing up with my builds

2012-10-05 Thread Rob Withers
Hi Dirk, Thanks SO MUCH for your help! It was indeed the lack of a SCM config for the project. I had to add the git plugin and config the workspace and build directories for Jenkins elsewhere than my eclipse workspace. Then I was able to specify the git repo as the eclipse project file path

Re: Can I use the same job names on many slaves (i.e. in an OO manner)?

2012-10-05 Thread zperry
@DarkRift and @teilo, Many thanks for you two's hints. I will study up that aspect, try it out, and report back my results, if not this coming weekend, definitely early next week. Regards, --Zack There are plugins to help you do that. > > Mainly there is the matrix job plugin which allows you

Re: Cannot display dependency graph

2012-10-05 Thread domi
Does the user Jenkins runs with see 'dot' on the PATH? ('dot' is the CLI tool installed by graphviz) If not, configure it in the global config of your jenkins installation. /Domi On 06.10.2012, at 00:16, hezjing wrote: > Hi > > I have installed Jenkins 1.484 and Dependency Graph Viewer Plugin

jenkins plugin for sona type repository manager

2012-10-05 Thread Rajagopal, Sampath
Is there a jenkins plug-in available for sona type repository manager (Maven) ? if not, please advise how the uploads to repository can happen ? Thanks Sam