Re: AbstractLazyLoadRunMap bug in Jenkins 1.488

2012-11-06 Thread Andreas Zschorn
Is someone working on this issue ? In the endeffect it completly breaks jenkins. Can we help analyzing it? The code for this AbstractLazyLoadRunMapis really a little bit strange and i don't want to mess with it. Andreas

[no subject]

2012-11-06 Thread hezjing
Hi I used to find the following options in the Jenkins's Manage Jenkins page? 1) System Log 2) System Information But now they are not there any more in Jenkins 1.489, they have been removed for some reasons??? -- Hez

SCM plugin - NPE when changing settings

2012-11-06 Thread Jorge Costa
Hi all, Im having a customized version of the surround scm plugin. Ive added a few more configuration parameters and now once ive change the configuration after the job runs i get this nasty NPE. I need to reload configuration from disk and change the settings right away before it runs again.

What's the right way to provide server-specific configuration files in Jenkins or CI in general?

2012-11-06 Thread daudiam
In *CI*, we usually take out a fresh copy, and changes in the repository are detected and build started. But in some cases, the local repositories at various servers have different values for some constants in their configuration files that is specific to each server (the mailing address

Jenkins not correctly executing Maven task starting forked jetty.

2012-11-06 Thread Thomas Peeters
Jenkins version: 1.461 http://jenkins-ci.org/ We are attempting to start a Jetty server in forked mode at the end of a build pipeline. It all works, except for the forking part, that doesn't seem to work eventhough a non-forked attempt does work. Even executing the exact same Maven command

Execute shell failure

2012-11-06 Thread rakesh
I am fairly new user of Jenkins, just installed it on my local mac machine. I created a job to run few commands which run successfully from xterm, though coming across following error on jenkins. Not sure what I am doing wrong here? Job is running: -- Execute shell:

Re: Execute shell failure

2012-11-06 Thread Marek Gimza
Rakesh, Does this directory acutally exist? /Users/rpatel/Documents/MobSources/XX_iOS Can use cd to this dir manually? Kind Regards, Mgimza On Tue, Nov 6, 2012 at 2:13 PM, rakesh rpa...@mobiquityinc.com wrote: I am fairly new user of Jenkins, just installed it on my local mac machine. I

Re: Execute shell failure

2012-11-06 Thread Josselin Pierre
Hi, Another point to check is user rights : does jenkins' user have access to this folder ? cheers, Josselin 2012/11/6 Marek Gimza marekgi...@gmail.com Rakesh, Does this directory acutally exist? /Users/rpatel/Documents/MobSources/XX_iOS Can use cd to this dir manually? Kind

Re: Execute shell failure

2012-11-06 Thread rakesh
Yes, I ran this cmd from xterm. Is there a permission issue here? I did think about adding a user with privileges, but wasn't able to add a user in jenkins. Thanks, Rakesh On Tuesday, November 6, 2012 2:33:27 PM UTC-5, mgimza wrote: Rakesh, Does this directory acutally exist?

Re:

2012-11-06 Thread Larry Shatzer, Jr.
They are named: Jenkins CLI for some reason. You can also get there via these links: http://jenkins.company.com/systemInfo http://jenkins.company.com/log On Tue, Nov 6, 2012 at 2:06 AM, hezjing hezj...@gmail.com wrote: Hi I used to find the following options in the Jenkins's Manage Jenkins

Re:

2012-11-06 Thread Larry Shatzer, Jr.
Also see https://issues.jenkins-ci.org/browse/JENKINS-15732 which has a pull request to fix it. On Tue, Nov 6, 2012 at 12:51 PM, Larry Shatzer, Jr. lar...@gmail.comwrote: They are named: Jenkins CLI for some reason. You can also get there via these links:

Re: Execute shell failure

2012-11-06 Thread rakesh
Hi Josselin, How do I check this? -Rakesh On Tuesday, November 6, 2012 2:43:39 PM UTC-5, Josselin Pierre wrote: Hi, Another point to check is user rights : does jenkins' user have access to this folder ? cheers, Josselin 2012/11/6 Marek Gimza marek...@gmail.com javascript:

Specifying Branches to Poll for ClearCase Plugin

2012-11-06 Thread Chris Wozny
All, Under Source Code Management in Base ClearCase for the ClearCase plugin, how do I specify the mainline as a branch to poll? I'm unsure of the syntax as the ClearCase plugin page only shows how to specify all of the branches of a file or a specific branch which is not the mainline.

Re: Run a program (as a .exe file) as a post build task

2012-11-06 Thread Roshan
Anybody has idea how to do this? On Monday, November 5, 2012 1:59:55 PM UTC+11, Roshan wrote: Hi Currently I am using Jenkins ver. 1.488 http://jenkins-ci.org/ to build my maven 3 project. As a part of the build process, I want to execute an application program (.exe file on windows 7) as

RE: EXTERNAL: Specifying Branches to Poll for ClearCase Plugin

2012-11-06 Thread Ng, Jeff
If you are asking about the ability to poll multiple branches, the answer is Yes. In the “Branch(es)” field, you can specify multiple branches by separating them by a whitespace. For example, if you want to poll both a specific integration branch and the “/main” branch, your field value would

Re: Run Tests Distributed

2012-11-06 Thread Loop
Hi Brian, I am very interested. Can you show me more of the setup? thanks Luc On Saturday, June 2, 2012 8:27:16 AM UTC-4, BrianParker wrote: Unless I'm mistaken, I think using the multiconfiguration job type would require that the tests to run and the distribution of those tests is

SELENIUM_HOST Null error when launching Sauce Connect

2012-11-06 Thread Trevor
I'm trying to run Safari and ipad autobuilds that use the Sauce onDemand Plugin. I'm leaving the SELENIUM_HOST and SELENIUM_PORT fields blank but getting the following error. Almost identical configuration is working for other browsers such as Chrome and Firefox. The console output advised me

Re: Jenkins failed to record SCM polling

2012-11-06 Thread hezjing
The problem gone away after I downgraded Jenkins to 1.488. On Tue, Nov 6, 2012 at 5:20 PM, Dirk Kuypers kuypers.d...@gmail.com wrote: just vote for: https://issues.jenkins-ci.org/browse/JENKINS-15718 BR Dirk 2012/11/6 hezjing hezj...@gmail.com I made the conclusion too early, the

Re: SELENIUM_HOST Null error when launching Sauce Connect

2012-11-06 Thread Trevor
Ah looks like upgrading the Sauce onDemand Plugin from 1.27 -- 1.30 fixed the issue. On Tuesday, November 6, 2012 4:07:04 PM UTC-8, Trevor wrote: I'm trying to run Safari and ipad autobuilds that use the Sauce onDemand Plugin. I'm leaving the SELENIUM_HOST and SELENIUM_PORT fields blank but

Re: Run a program (as a .exe file) as a post build task

2012-11-06 Thread Mark Waite
If the ideas listed on that page didn't work, you could attempt to define the program to run as a service (google for exe to service for some possible examples).  At the end of your job, you would NET STOP ServiceName, replace the executable with our service, then NET START ServiceName. Mark