Re: Web page issue

2012-02-15 Thread Richard Mortimer
Hi, (moving thread back to -users@ instead of -dev@) On 15/02/2012 05:05, sureshkumar nandakumar wrote: Hi, Really thanks for your reply. I didn’t get any issues in server. It is working well. The log file that you supplied is where issues in the server are generally reported. In your case

Re: kill builds that take too long?

2012-02-15 Thread Dirk Weigenand
Add the timeout property (http://ant.apache.org/manual/Tasks/junit.html) to your junit ant task (iff you use ant). This will terminate unit tests taking longer than the specified amount in milliseconds. For the surefire maven plugin the relevant property is described hier:

Jenkins CLI login problem

2012-02-15 Thread Lestin Liu
Hi, Did anyone have CLI creditential problem? I met with the following messege: -- java -jar jenkins-cli.jar -s http://hudson-01:8008/ help You must authenticate to access this Jenkins. Use --username/--password/--password-file parameters or login command. -- java -jar jenkins-cli.jar -s

Re: upgrade to 1.451 messed up , Jenkins down now.

2012-02-15 Thread Jan Seidel
Nah... As long as you just did a restart is nothing gone. You can find all your jobs in Jenkins/jobs/[Jobname]\config.xml. They contain your configuration for each job. You can take a look into the Jenkins log to see why they didn't load. And this has one good thing ;) This little shock you

Re: Jenkins CLI login problem

2012-02-15 Thread danny staple
I think the answer is in the message: You must authenticate to access this Jenkins. Use --username/--password/--password-file parameters or login command. If seems like you have security enabled, and you should be providing a --username username or authentication method for it to work. On 15

FSTrigger plugin: can't monitor unix symlink to dir, with path containing environment variables...

2012-02-15 Thread Adam Aquilon
Hello all, (This is my first question to this list. Running Jenkins 1.446.) I'm trying to use the FS Trigger plugin (version 0.26) to monitor any changes to a symlink (on linux) and trigger a job when the symlink target changes. 1. The symlink points to a directory. The change I want to

Re: git: reduce clones' disk space

2012-02-15 Thread Gergely Nagy
Thanks Mark, that's great info - to me it sounds like the way to go. Gergo On Wed, Feb 15, 2012 at 3:03 AM, Mark Waite markwa...@yahoo.com wrote: The git plugin rework discussions mentioned the possibility of including the ---reference existing-repository argument to git clone so the pack

ghunit testing in xcode

2012-02-15 Thread Mat Stollman
Hey Everyone! I was wondering if anyone has received an issue with xcode 4.2.1 and trying to run ghunit tests. For some reason, I can not get it to run my shell script with the sh command. Here is the ending of my output: It pulls from our github correctly but this is always the end result. I

Failed Tests reports link returns 404 error

2012-02-15 Thread Jeff
New to Jenkins...in case it's not obvious. I have the TestNG plugin installed but the tests are currently run using JUnit via Maven surefire plugin. Should the failed test report link work with JUnit as well? I'm not sure what I should be expecting to happen. -- Jeff Vincent

Re: Pipelines in Jenkins...

2012-02-15 Thread R. Tyler Croy
On Wed, 15 Feb 2012, Jeff wrote: I'm trying to implement Jenkins with Maven as the build CI/CD tool since it does so well with the technologies we are using out of the box instead of GO that the larger .NET-based organization is using. I've done Jenkins jobs for stand-alone projects but

jenkins svn update

2012-02-15 Thread fiona
if my source code is managed by svn, when a new build start, it will update first,but I find it very slow, if I execute command 'svn update' alone, it is update fast. what factor maybe affect the speed?

Re: jenkins svn update

2012-02-15 Thread Didier Durand
Hi, Maybe not enough memory for the JVM running the job to handle the svn protocol efficiently Try to increase the -Xmx -Xms on the Java Options of your job config. I would be interested to read about your results with this proposal or any other. regards didier On Feb 16, 6:15 am, fiona

Re: Job dependencies

2012-02-15 Thread Didier Durand
Hi, You could create a job C that is triggered by the same events as B C will only do 1 thing: have A a downstream job and A will have B as downstream job So, when C triggers (based on the triggers that you have chosen) it launches A. When A finishes, it launches B That's 1 way: maybe will

Re: jenkins svn update

2012-02-15 Thread fiona
hi, I open my job config, there no place to increase the -Xmx -Xms , I increase it in my enviornment variable JAVA_OPTS,the Xmx is 1024m, Xms is 128m, it seems like no effect. BTW,my source code is too much. On 2月16日, 下午1时20分, Didier Durand durand.did...@gmail.com wrote: Hi, Maybe not enough