svn client selection at job project level - is that possible - quick question

2013-01-09 Thread zw
Hi All Under Manage Jenkins/Hudson - Configure System - Subversion - Subversion Workspace Version - it has a drop down listing 1.4 to 1.7. Unfortunately, we have a job that needs a 1.4 svn client. Our understanding is that the above setting is global. Is there a way to configure a job/project to

SVN_REVISION - quick question

2013-01-09 Thread zw
Hi All We have a chained job (4 subjobs, chained together). All the subjobs's Repository URL has similar strings like https://abcdef.wsxedc.com/svn/prod/1.0/src@${SVN_REVISION} We set the first chain job with This build is parameterized - String parameter - name as SVN_REVISION, value as When w

Re: Advice needed on setting up multiple jobs that build common code

2013-01-09 Thread Jiurgol Irwin
Thanks Mgimza! I'm going to try out the multi-job plugin today! On Tuesday, January 8, 2013 3:46:06 PM UTC, mgimza wrote: > > Hi Irwin, > > We took two approaches to a similar requirement. > > 1. For common code that are built as libraries, we build separately. As > this code does not change t

Re: Question about automatic tools installation

2013-01-09 Thread mpapo - Michaël Pailloncy
Hi ! Our nexus repository seems to be overloaded by downloads made by Jenkins Why Jenkins downloads all used tools on each build ? Nobody uses automatic tools installation (maven, JDK, ant, groovy, ...) from an artefact repository manager with Jenkins ? Thanks in advance. Michaël Pailloncy Le

RE: Build failure analyzer pattern issue

2013-01-09 Thread Sandell, Robert
Hi, For performance reasons the BFA uses full match per line. So try “Cannot find parent.*” And see if that works. Robert Sandell Software Tools Engineer - SW Environment and Product Configuration Sony Mobile Communications From: jhoomshar...@netscape.net [mailto:jhoomshar...@netscape.net] Sent:

Re: SVN_REVISION - quick question

2013-01-09 Thread cjo
What you need to do is pass the parameter for the SVN_REVISON that is generated in the first job down to the chained jobs. Simple solution using parameterized trigger plugin[1] (assumes you don't want to start downstream jobs directly with parameters) Start job, has REVISION string parameter, Th

Re: BlameSubversion plugin and post-commit-hook

2013-01-09 Thread Robert
Hi, What I've noticed after studying BlameSubversion code is that this plugin do too much. In my case I used shared workspace for several jobs so I just wanted to copy changes and to be able to see them. Though I created my own plugin with some custom features specific for the project by forkin

Access logs from TriggerBuilder in jelly script

2013-01-09 Thread Sergey Grashchenko
Hi, I'm trying to create a jelly email-ext template for reporting from my job and have troubles accessing "partial" job builds (and their logs obviously). My job executes 3 partial jobs as a build step thru "Parameterized Trigger Plugin". I'd expect them appear in a call to myBuild.getDownstre

RE: Read-only configurations plugin for latest jenkins

2013-01-09 Thread Alex Earl
FYI, latest Jenkins is 1.497 or something close to that, not 1.466 Sent from my Windows Phone -- From: Sumit Nagal Sent: 1/8/2013 11:26 PM To: jenkinsci-users@googlegroups.com Subject: Read-only configurations plugin for latest jenkins Hi, I want to know if this plug-

How to do parameterized build triggering through Mail Commander Plugin

2013-01-09 Thread Subodh Konhor
Hi Shikakura, I have configured the mail commander plugin for my Jenkins setup. It works fine if I give subject as build testjob But if the testjob is a parameterized build and I specify parameters in the subject, it doesn't take the paremeters build testjob -p RELEASE=auto -p TOBUILD_PATCHES

Re-key successful or not?

2013-01-09 Thread flsobral
I updated to the latest version yesterday and performed the re-key operation twice. First I scheduled the operation for the next startup and restarted the service. Jenkins says the re-key operation was successful, but the log lists several files that couldn't be opened or replaced. I tried agai

Position of Development and Operations for Jenkins and other CI related tools in Ericsson

2013-01-09 Thread Christian Lague
Ericsson is looking for DevOps candidates with very good experience to develop and support global services for Jenkins, Gerrit and other tools in the continuous integration domain. You can access the full description on LinkedIn at http://www.linkedin.com/jobs?viewJob=&jobId=4528066 or read

Jenkins Usage Question - Java requirement

2013-01-09 Thread cmanalyst66
Hello, We have an old build environment where the build server does not support Java. Given this limitation, is it possible to still use Jenkins in a master/slave set up? Or do both master/slave require Java? Any pointers are appreciated. Thank you. Amad

RE: Jenkins Usage Question - Java requirement

2013-01-09 Thread Mandeville, Rob
The master is a WAR, the slave is a JAR. You need Java installed on both ends. If you’re really hard up, can you run the slave on a saner build environment and just write all the build steps to do things like “ssh {hostname} {command you need to run}”? --Rob From: jenkinsci-users@googlegroups

Re: Jenkins Usage Question - Java requirement

2013-01-09 Thread C M
Sigh. Deep down, I was afraid of this...unfortunately, we don't have the option of switching to a more modern environment. On Wed, Jan 9, 2013 at 9:32 AM, Mandeville, Rob wrote: > The master is a WAR, the slave is a JAR. You need Java installed on > both ends. > > ** ** > > If you’re really

Re: Jenkins Usage Question - Java requirement

2013-01-09 Thread nicolas de loof
ssh slaves will install a JVM when none is found, but this assumes there's one for the target architecture. Which OS are you running on slave ? 2013/1/9 C M > Sigh. Deep down, I was afraid of this...unfortunately, we don't have the > option of switching to a more modern environment. > > > On Wed

Re: SVN_REVISION - quick question

2013-01-09 Thread zw
hi cjo Thanks for responding. I think we had already done with your suggestion and it didnt work. On Wednesday, January 9, 2013 2:10:36 AM UTC-8, cjo wrote: > > What you need to do is pass the parameter for the SVN_REVISON that is > generated in the first job down to the chained jobs. > > Simple

Re: Jenkins Usage Question - Java requirement

2013-01-09 Thread C M
QNX 4.25 On Wed, Jan 9, 2013 at 9:54 AM, nicolas de loof wrote: > ssh slaves will install a JVM when none is found, but this assumes there's > one for the target architecture. Which OS are you running on slave ? > > > 2013/1/9 C M > >> Sigh. Deep down, I was afraid of this...unfortunately, we do

Re: Jenkins Usage Question - Java requirement

2013-01-09 Thread Slide
Can you SSH to the QNX system? If you can, then you could run commands remotely from another system by using ssh. On Wed, Jan 9, 2013 at 9:20 AM, C M wrote: > QNX 4.25 > > > On Wed, Jan 9, 2013 at 9:54 AM, nicolas de loof > wrote: > >> ssh slaves will install a JVM when none is found, but this

Re: Jenkins Usage Question - Java requirement

2013-01-09 Thread Les Mikesell
On Wed, Jan 9, 2013 at 9:43 AM, C M wrote: > Sigh. Deep down, I was afraid of this...unfortunately, we don't have the > option of switching to a more modern environment. Maybe you could run the slave on a system with java, but use a shared filesystem between it and the build system and execute th

Re: Hudson to Jenkins

2013-01-09 Thread Zoubeida Zarkouna
HI, Iam interested. Please send them to me as well, I would like to migrate from hudson to jenkins. Thanksin advance. بتاريخ الاثنين، 14 مايو، 2012 UTC+1 11:45:29 ص، كتب arvind: > > We are planning to migrate our current Hudson 2.2 ver to Jenkins 1.463 > ver . In the migration document(http

Re: Hudson to Jenkins

2013-01-09 Thread Zoubeida Zarkouna
HI, Iam interested. Please send them to me as well, I would like to migrate from hudson to jenkins. Thanksin advance. بتاريخ الاثنين، 14 مايو، 2012 UTC+1 11:45:29 ص، كتب arvind: > > We are planning to migrate our current Hudson 2.2 ver to Jenkins 1.463 > ver . In the migration document(http

Re: Jenkins Usage Question - Java requirement

2013-01-09 Thread R. Tyler Croy
On Wed, 09 Jan 2013, cmanalys...@gmail.com wrote: > Hello, > > We have an old build environment where the build server does not support > Java. > > Given this limitation, is it possible to still use Jenkins in a > master/slave set up? Or do both master/slave require Java? > > Any pointers a

Null pointer exception in authenticating against a subversion repository.

2013-01-09 Thread Andrew Bayless
Hello, I am having problems authenticating against a local subversion repository using the subversion plug-in. I am using Jenkins 1.497 with the Subversion 1.44 plugin deployed on Winstone, running on CentOS 6.3. I am also using JDK 1.7 to run Jenkins and Winstone. I am using a subversion repo

Re: getting currently logged in username in jenkins java plugin

2013-01-09 Thread Christopher Orr
On 09/01/13 06:12, shruthi ganesh wrote: I am writing a plugin to authorize an authenticated user in jenkins. I require the username of the currently logged in user. I have used mysql db for authentication. Is there any possibility of getting the username?. Does jenkins store the user de

Re: jenkins with ldap authentication

2013-01-09 Thread Christopher Orr
On 03/01/13 10:51, Levin, Ilya wrote: I’m trying to use ldap in my Jenkins (v 1.485). I configured the ldap connection under the security relam, and it seems that the connection with the ldap server was established. I did a little test and entered 2 users, a false one and an existing one. As yo

Re: Read-only configurations plugin for latest jenkins

2013-01-09 Thread Dean Yu
I'm curious what this plugin does that's different than enabling the Extended Read permission, which is built-in. The extended read permission grants read-only access to the standard configuration pages. -- Dean From: Alex Earl mailto:slide.o@gmail.com>> Reply-To: "jenkinsci-users@google

SCM polling with mercurial exclude path or commit comment

2013-01-09 Thread EldadAK
Is there a way to use mercurial SCM polling with some kind of exclusion? I have this setup that my Jenkins tags, commits and pushes a good build's version back to the repository where it pulled from. This causes the next SCM poll to discover the changes and trigger a new build. It causes an endle

Re: Null pointer exceptions after upgrade from 1.480.1 to 1.480.2

2013-01-09 Thread Chanda Unmack
Thanks for the pointer - sometimes it takes an external pair of eyes to see something so obvious :) I did read that advisory, and I thought I was deleting everything and or it was overwriting the *.jnlp. Unfortunately it looks as if it was merely adding copies, and not overwriting - found slave-age

Re: Null pointer exceptions after upgrade from 1.480.1 to 1.480.2

2013-01-09 Thread Chanda Unmack
Spoke too soon apparently - as soon as I logged out of the slave, the connection was broken, so back to where I was before. Any other ideas? I'm going to keep looking in case there is a jnlp hiding somewhere else on the system. chanda On Wed, Jan 9, 2013 at 11:04 AM, Chanda Unmack wrote: > Tha

how do you disable or reduce logging INFO

2013-01-09 Thread Joseph Argiro
hi I’m new to Jenkins. I’ve installed the latest war file, I’m using a tomcat server, I’ve extracted the log4j.jar file so that it uses the one located on my server everything seems to be working, but getting huge amounts of debug information in my log files seems that the logger level h

UI Not Showing Job Status

2013-01-09 Thread rhythmicdevil
Hi all, I've been using version 1.492 for about year. I installed 1.494 on a new server (centos6) and am getting some odd behavior. I run the build for my jobs and when complete the Jenkins UI updates showing me the result. However, when I go back to the Jenkins UI I the 'Last Success', 'Last F

Re: Re-key successful or not?

2013-01-09 Thread Bill Wonch
I'm having the same issue. Jenkins is running as the system user on a win2k3 vm, and when I run the re-key, I see several files that Jenkins is unable to delete. I checked folder permissions, and everything looks good. Anyone have any advice? Thanks! Bill On Wednesday, January 9, 2013 6:52

RE: Null pointer exceptions after upgrade from 1.480.1 to 1.480.2

2013-01-09 Thread Matthew.Webber
I was in a slightly different situation (linux, slaves launched manually), but had the 403 as well. Fixed by going to Manage Jenkins --> Configure Global Security, and under Project-based Matrix Authorization Strategy I had to enable “connect” in the “slave” section, for user “Anonymous”. Matth

Build Flow + Manual Build Steps

2013-01-09 Thread Anders Asplund
Hi, Are there any plans of implementing manual build step using the DSL in the Build Flow plugin in the same way as manual steps work in the Build Pipeline plugin? I guess this would require that visualization of the build flow configuration is implemented as requested in JENKINS-13520

Re: Null pointer exceptions after upgrade from 1.480.1 to 1.480.2

2013-01-09 Thread Chanda Unmack
Thank you Just by checking that box magically all my windows slaves came online. I'm not sure about the security ramifications, but for now it gets me where I need to be. Thanks again! chanda On Wed, Jan 9, 2013 at 1:59 PM, wrote: > I was in a slightly different situation (linux, slaves

MSBuild VC++ User settings

2013-01-09 Thread mwpowellhtx
Hello, Probably more a VS2008 and/or MSBuild question, but I'll ask here anyway I've got a VS2008 VC++ project that I want to build from Jenkins. The trick is, VS2008 wants to store its configuration in a machine / user specific USER file. Is there a way to include a global (any machine / any

RE: MSBuild VC++ User settings

2013-01-09 Thread Alex Earl
What configuration do you mean? Sent from my Windows Phone -- From: mwpowellhtx Sent: 1/9/2013 4:05 PM To: jenkinsci-users@googlegroups.com Subject: MSBuild VC++ User settings Hello, Probably more a VS2008 and/or MSBuild question, but I'll ask here anyway I've got a

RE: Missing console link

2013-01-09 Thread Todd Greer
I’m seeing this in Jenkins 1.483, exactly as you describe. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Ryan Shoemaker Sent: Tuesday, January 8, 2013 3:56 PM To: jenkinsci-users@googlegroups.com Subject: Missing console link I posted recently abou

Re: MSBuild VC++ User settings

2013-01-09 Thread mwpowellhtx
Well, I sort of half answered my own question. Configuration tends to land in the form: ProjectName.vcproj.COMPUTER.USER.user. I need for it to land in a general manner that Jenkins CI can work with when MSBuild sees it. i need that to pick up radiated output. I might look at other ways to ca

Trigger remote job fails - quick question

2013-01-09 Thread zw
Hi All We have 2 jenkins servers in boxes A, and B. Box A has box C as its slave. We tried triggering 1 job in box A by using wget http://www.arefshg.com:8080/hudson/job/1.0_Build/build in the Build Execute Shell section. Console output Building remotely on slave_linux [test_svn14] $ /b

Re: Trigger remote job fails - quick question

2013-01-09 Thread Stuart Whelan
Is the job you are trying to trigger configured to use parameters? Do you have login security turned on any of the jenkins machines? I trigger a build on our DR jenkins box using this method on my window jenkins server: c:\unix\usr\local\wbin\wget "http://DRMACHINE:8080/job/DR%%20-%%20Kickoff%%2

The Maven plug-in's SurefireArchiver ignores surefire-reports if the Maven plugin isn't what it expects

2013-01-09 Thread John Bito
I'm adding unit testing for objective-c/xcode and the maven plugin isn't picking up the results because it believes tests are run only by a certain set of plugin goals as noted in JENKINS-8334. I see a pull request

Remote build trigger with curl - quick question

2013-01-09 Thread zw
Hi All Could someone share a simple example on how one could use curl command and passing in the SVN_REVISION parameter value to the remote job so that the SCM could use it as part of its repository URL and kick off the build ? Thanks

Re: Hudson to Jenkins

2013-01-09 Thread Jeff
I wonder...does the job import plugin work between latest Jenkins and Hudson? If so, you could bring up a clean Jenkins instance in parallel with Hudson. It would require a manual configuration of Jenkins, but you could have Hudson open side-by-side to cut-N-paste settings. Then you could import

Re: Trigger remote job fails - quick question

2013-01-09 Thread zw
Hi Stuart Thanks for responding. The remote Jenkins does not have security ie no username password to deal with; simply a job configured there. Do you know how one could pass revision number with a curl command to kick off the remote build ? On Wednesday, January 9, 2013 4:42:25 PM UTC-8, Stu

Re: Read-only configurations plugin for latest jenkins

2013-01-09 Thread Sumit Nagal
My bad, I am using 1.493 though problem is job configuration is not visible from Read-only configuration plug-in. -Sumit On Wed, Jan 9, 2013 at 4:56 AM, Alex Earl wrote: > 1.497

Re: Read-only configurations plugin for latest jenkins

2013-01-09 Thread Sumit Nagal
As I know, extended read only plug-in will enable security in project/based security. Read-only configuration plug-in provide read only feature outside job/system level. please see mentioned links on how to part for this plug-in. if anyone has more information please share. -Sumit On Wed, Jan 9,

Re: Read-only configurations plugin for latest jenkins

2013-01-09 Thread Sumit Nagal
I am able to figure it out the issue. you need to enable in My View-> configuration and de-select "Display for users without access to editable configuration". this will be able to show you read only configuration. I am not sure if you have to set this up for every user manually. -Sumit On Wed, J

notifyCommit master/slave inconsistency

2013-01-09 Thread Manuel Vacelet
Hi there, I struggle understanding an inconsistency with notifyCommit on my jenkins server (1.498, git plugin 1.1.26). I try to setup the smart polling using notifyCommit and it works on my slave nodes but not on master. On master, each time I curl notifyCommit, jenkins launch a build (of cours

Re: Job Generator Plugin jobs get stuck when deleting generated jobs

2013-01-09 Thread Jonathan Rogers
syl20bnr wrote: > I just released the 1.08 version which contains a fix for this bug :) > Thanks for the quick fix. I just confirmed that I can delete an entire hierarchy with my configuration. -- Jonathan Rogers