Re: What is the MVC framework on which Jenkins is built?

2012-08-14 Thread R. Tyler Croy
On Tue, 14 Aug 2012, Martin d'Anjou wrote: > What is the MVC framework on which Jenkins is built? This is probably a better question for the jenkinsci-dev list, that said I'm not sure if a "framework" was used so much as a collection of tools :) - R. Tyler Croy -

Antwort: RE: Plugin to have several rows of View-Tabs

2012-08-14 Thread Andreas Schilling
Hi again! sorry for bumping this old topic. I stumbled into this: https://wiki.jenkins-ci.org/display/JENKINS/Extension+Point+for+Project+Views+Navigation Does someone know whether and where I can get that multi-row implementation that is mentioned there? Before thinking about writing my own plu

Re: Windows installation - cannot be configured - jobs page loading shown

2012-08-14 Thread Kenneth
Hi Sami, I'm running with the newest Jenkins , ie. version 1.477. But the problem only seems to appear on my WM_ware setup on a virtual mashine. -Kenneth On Tuesday, August 14, 2012 6:49:27 PM UTC+2, sti wrote: > Which version of Jenkins you are running? > > -- Sami > > Kenneth > kirjoitti 1

Re: How to install slave to a machine which doesn't have a JVM?

2012-08-14 Thread Slide
What CAN be installed? The slave is generally distributed as a jar file, which means it needs Java to run. slide On Tue, Aug 14, 2012 at 8:36 PM, Renlong Zhang wrote: > Hi all, > > I have to run test cases in a machine and this machine can not install a > JRE, Is it possible to install the jenki

How to install slave to a machine which doesn't have a JVM?

2012-08-14 Thread Renlong Zhang
Hi all, I have to run test cases in a machine and this machine can not install a JRE, Is it possible to install the jenkins slave to this machine? If it is not possible, should I have to design an TCP/IP application to communicate with the Jenkins server and the machine to run the job in the m

What is the MVC framework on which Jenkins is built?

2012-08-14 Thread Martin d'Anjou
What is the MVC framework on which Jenkins is built? Thanks, Martin

Re: Return value of a command in shell script != 0 stops build

2012-08-14 Thread Qazwart
Add in a test to see if the director exists before doing the copy: for P in /usr/contrib/bin /usr/local/bin do [ -d $P ] || continue cd $P > /dev/null 2>&1 if [ $? -eq 0 ] then // XYZ echo $P fi done This will skip the iteration an

Re: pre condition for ant build

2012-08-14 Thread Qazwart
You can use the in Ant to check for the URL and have Ant fail the build if it's not available. In fact this can be placed in a fail task. -- David Weintraub da...@weintraub.name On Aug 14, 2012, at 10:39 AM, Kamal Ahmed wrote: > Hi, > Does someon

Re: Build with for loop like finesse

2012-08-14 Thread rusty
so. f I understand this completly If I "Block build when downstream project is building" Jenkins will resolve all of the downstream builds recursively allowing all children as well as grandchildren projects to be built before building project 1 again with different parameters? On Tuesday,

Is it possible to get two different test reports/histories in the same Job?

2012-08-14 Thread sebtardif
Is it possible to get two different test reports/histories in the same Job? I'm used to get my build fail if any tests fail. Let's call this strong commitment to no regression. But also, I need my team to communicate issues to other developers by writing tests, the tests are going to fail as l

Re: Build with for loop like finesse

2012-08-14 Thread cjo
If all of the builds are triggered by project 1, and you only want to run one set of parameters at a time through the chain at a time. You should be able to use the "Block build when downstream project is building" and "Block build when upstream project is building" advanced options on all of t

Re: Build with for loop like finesse

2012-08-14 Thread rusty
The problem is that I can have no concurrency in between the two top projects nor any child projects that they have. I have looked at throttle builds plugin, but it doesn't provide what I need which is full atomicity on the top level builds and all recursive underlying builds. On Tuesday, A

Re: Windows installation - cannot be configured - jobs page loading shown

2012-08-14 Thread Sami Tikka
Which version of Jenkins you are running? -- Sami Kenneth kirjoitti 14.8.2012 kello 15.36: > Hi Guru's > I'v jeg trying to konfigure my jenkins to have a job monitoring three of > several projects checked into subversion. > and build it with ms build. (using .net 2.0 & c#) > after that I would

Security Realm by Custom Script Plugin: Group Command Script

2012-08-14 Thread Bowling, Brad
I am a system admin setting up Jenkins 1.477. I have "Security Realm by custom script" plugin installed so I can customize my user authentication. My question concerns the Group Command script. I am thinking that this functionality provides a custom way to determine the group that a certain u

Re: Return value of a command in shell script != 0 stops build

2012-08-14 Thread Sami Tikka
If you begin the build step with a line that starts with #!, Jenkins will assume you want to specify the interpreter instead of using /bin/sh -xe, which is the default. It is the -e switch of the shell which is responsible for aborting the script when a command exits with error. You could plac

Re: Build with for loop like finesse

2012-08-14 Thread Sami Tikka
All the builds will enter the queue at the same time, but how many will actually run in parallel depends on how many executors you have or if you have used other means of concurrency control like Throttle Concurrent Builds plugin. -- Sami rusty kirjoitti 14.8.2012 kello 19.26: > > I am alre

Re: Build with for loop like finesse

2012-08-14 Thread rusty
I am already using a multi-configuration project, I think that the disconnect is stemming from how do I use multiple axis to accompolish this. Won't adding another axis start the two projects in parallel? I can't have two projects in paralelll... On Tuesday, August 14, 2012 3:06:38 AM UTC-6,

Return value of a command in shell script != 0 stops build

2012-08-14 Thread natalie_public
Hi there, I'm using Jenkins to build a C++ project on Solaris 10. To set up the environment I'm calling various shell scripts, of which one contains the following code: -- for P in /usr/contrib/bin /usr/local/bin do        cd $P > /dev/null 2>&1        if [ $? -eq 0 ]        then          

pre condition for ant build

2012-08-14 Thread Kamal Ahmed
Hi, Does someone have any insight and suggestion, as to what would work best in the following scenario. I want to have a pre-check in place, which will verify if a particular WSDL is available , and if it IS ( meaning we get WSDL XML )  only then kick off the ant task which runs some functional

RE: email-ext sending mail once a day for succeeding job

2012-08-14 Thread Alex Earl
You would have to have a job that ran every day that checked the status of the other jobs, most likely through a presend script, or in the groovy template. Slide Sent from my Windows Phone -- From: David Gang Sent: 8/14/2012 7:17 AM To: jenkinsci-users@googlegroups.com

email-ext sending mail once a day for succeeding job

2012-08-14 Thread David Gang
Hi all, We have a job which runs every hour. In order not to get flooded with mails i configured the email-ext step so that we will get just mails for fails and for the fixed trigger. I got now an additional requirement that regardless of the job status a mail should be sent once a day. So eve

Re: new plugin version not showing up in "update center"

2012-08-14 Thread Åsmund Østvold
just to terminate this thread. This a issue with a mirror pointed to by http://updates.jenkins-ci.org/update-center.json. Asmund On Mon, Aug 13, 2012 at 12:18 PM, Åsmund Østvold wrote: > Thanks quick response. > > To validate if it is a local or a global (unlikely) issue. Could somebody > tel

Windows installation - cannot be configured - jobs page loading shown

2012-08-14 Thread Kenneth
Hi Guru's I'v jeg trying to konfigure my jenkins to have a job monitoring three of several projects checked into subversion. and build it with ms build. (using .net 2.0 & c#) after that I would like to run NUnit test on a project. But when I try to configure the job, the top of the page is graye

Re: Why does http://updates.jenkins-ci.org/update-center.json redirect to a broken mirror?

2012-08-14 Thread Christopher Orr
On 08/14/2012 10:23 AM, Chris Withers wrote: On 14/08/2012 08:47, oliver gondža wrote: According to this status report http://mirrors.jenkins-ci.org/status.html, mirrors.karan.org is the only mirror that might cause problems. *sigh* FYI, that mirror is fixed now. Regards, Chris

Re: Custom Action: Sending E-Mail

2012-08-14 Thread Christopher Orr
On 08/14/2012 11:43 AM, jwa wrote: I've written a custom action, to integrate with some third-party proprietary mechanisms internally within the company I work for. This is all working well, however - I'd like to send an e-mail when the action has finished. Can I obtain a handle to Jenkin's e-m

Re: Changing the connection check URL

2012-08-14 Thread Marc Esher
On Tue, Aug 14, 2012 at 6:51 AM, Christopher Orr wrote: > Hi there, > > > On 08/13/2012 12:04 PM, Marc Esher wrote: >> >> My Jenkins server is sitting behind a firewall that does not permit >> outbound access to most of the internet. I was able to get an exclusion >> for jenkins-ci.com for purpose

Re: Changing the connection check URL

2012-08-14 Thread Christopher Orr
Hi there, On 08/13/2012 12:04 PM, Marc Esher wrote: My Jenkins server is sitting behind a firewall that does not permit outbound access to most of the internet. I was able to get an exclusion for jenkins-ci.com for purposes of using Jenkins auto updater and installing plugins. However, the conne

Re: Mail Watcher Plugin - config doesn't save

2012-08-14 Thread oliver gondža
On Tue, 14 Aug 2012 11:02:00 +0200, Chris Withers wrote: However, when I try and set the notification config on a node and hit save, the config isn't saved; if I got back to the config page, the "notify on" boxes are blank again... cheers, Chris I was unable to reproduce it using 1.44

Custom Action: Sending E-Mail

2012-08-14 Thread jwa
Good Morning Folks, I've written a custom action, to integrate with some third-party proprietary mechanisms internally within the company I work for. This is all working well, however - I'd like to send an e-mail when the action has finished. Can I obtain a handle to Jenkin's e-mail facilities

Re: Build with for loop like finesse

2012-08-14 Thread Sami Tikka
Use a multi-configuration project with one, two or more axes. -- Sami rusty kirjoitti 14.8.2012 kello 5.39: > PROBLEM: I need to build a project with certain parameters which then kicks > of various other projects. I then need to build the same first project with > a different set of param

Re: Mail Watcher Plugin - config doesn't save

2012-08-14 Thread Chris Withers
On 13/08/2012 09:24, oliver gondža wrote: The windows node in my cluster keeps on falling offline. How can I get Jenkins to email me when any node falls offline? (as it blocks a whole load of builds, but I don't get any notification of those...) > Hi, This plugin might be doing what you need (

Re: Builds aborting randomly

2012-08-14 Thread Joachim Van der Auwera
Maybe the machines are running out of memory? I have heard of Linux killing random processes to release memory. On 14-08-12 10:48, Lukas Rytz wrote: On Tuesday, August 14, 2012 10:45:38 AM UTC+2, Richard Bywater wrote: Wild guess but are the builds happening on a Windows based slave and

Re: Builds aborting randomly

2012-08-14 Thread Lukas Rytz
On Tuesday, August 14, 2012 10:45:38 AM UTC+2, Richard Bywater wrote: > > Wild guess but are the builds happening on a Windows based slave and > is someone logging out whilst the builds are running? > Thanks for the pointer! But that cannot be it - they are all linux slaves running with the S

Re: Builds aborting randomly

2012-08-14 Thread Richard Bywater
Wild guess but are the builds happening on a Windows based slave and is someone logging out whilst the builds are running? I've had problems in the past with this (its a thing you can get around by passing the right argument -- -Xrs I think from memory) Might be nowhere near the issue but just in

Re: Builds aborting randomly

2012-08-14 Thread Lukas Rytz
Well, that's unfortunately not the case. I changed our setup to never run builds of the same job on the same machine in parallel, but the aborts still happen. Just less often. The aborts always come in batches. The last batch was 48 aborts at the same time, each producing the same message in th

Re: Why does http://updates.jenkins-ci.org/update-center.json redirect to a broken mirror?

2012-08-14 Thread Chris Withers
On 14/08/2012 08:47, oliver gondža wrote: ...which still doesn't contain the text "watcher", let alone"mail-watcher-plugin". Can you verify the same behaviour? How aboutanyone else? You are right. mirrors.karan.org serves jenkins-core from Jul 22 but the other mirrors uses version from Aug 08 a

Re: Mail Watcher Plugin not showing in "available plugins"

2012-08-14 Thread oliver gondža
...which still doesn't contain the text "watcher", let alone "mail-watcher-plugin". Can you verify the same behaviour? How about anyone else? You are right. mirrors.karan.org serves jenkins-core from Jul 22 but the other mirrors uses version from Aug 08 and the plugin is indeed missing. Her

Re: Compute changelog error in hudson-2.2.0

2012-08-14 Thread Mohan
Hi Richard, Thanks for your reply. I will setup Jenkins and try it. -Mohan.

Re: Compute changelog error in hudson-2.2.0

2012-08-14 Thread Richard Bywater
Seems like you are using Hudson and not Jenkins so you might have more luck asking over on a Hudson mailing list (http://wiki.eclipse.org/Hudson-ci/contacts_and_help) or you could give Jenkins (http://jenkins-ci.org/) a go and see if that helps your situation? Cheers Richard. On Tue, Aug 14, 2012

RE: Issue getting RVM working

2012-08-14 Thread de Herdt Arne
Sorry, disregard my email. Finally solved it :D Was a problem with one of the build steps being configured wrong. Ruby projects are now running like a charm -- Arne -Original Message- From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of de Herdt