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

2012-05-15 Thread Sion
Ensure you have pre-configured the plugin.

>From the Dashboard -> Manage Jenkins -> Configure System -> Extended E-
mail Notification

Check these are all set how you want them. Then:

>From the Dashboard -> Project page -> Configure -> Post-build Actions -
> Editable Email Notification

I found on my page because I have a very long recipient list and the
text doesnt wrap (the box etends), the advanced button for the
"Content Token Reference" goes off screen. Scroll to the right and
press "Advanced". The page should expand and a new option with a
dropdown box appears called "Add a Trigger". Select a trigger and a
number of columns should appear; Trigger, Send To Recipient List, Send
To Committers, Send To Requester, Include Culprits, More Configuration
and Remove. If you expand the More Configuration option you can
customise the messages.

Hope this helps!

On May 13, 9:30 pm, Alex Earl  wrote:
> Someone else mentioned this as well, I haven't had a chance to look into it
> yet. It seems like something with the new post build configuration
> (dropdown list) stuff.
>
> Sent from my Windows Phone
> --
> From: v0idnull
> Sent: 5/13/2012 12:09 PM
> To: jenkinsci-users@googlegroups.com
> Subject: Re: Jenkins + Email-ext - How to configure per-project settings?
>
> I'm running Jenkins 1.463 and Email Ext 2.20. All post build actions are in
> a drop down menu for me, and they all add form elements except for Email Ext
>
>
>
> On Sunday, 13 May 2012 15:06:55 UTC-4, Dan Stine wrote:
>
> > Editable Email Notification is checkbox-enabled on my installation,
> > not a drop-down.  I'm running Jenkins 1.448 and Email Ext 2.20.
>
> > Dan
>
> > On May 13, 1:40 pm, v0idnull  wrote:
> > > So I want to get emails from successful builds and it seems that I need
> > the
> > > email-ext plugin.
>
> > > So I've installed it, set it up to override global settings, set
> > everything
> > > correctly.
>
> > > But when I goto the project settings, when I try to select Editable
> > Email
> > > Notifications from the post build actions drop down, nothing happens.
> > It's
> > > not being added to the post build queue.
>
> > > So Im not sure what else I have to do to enable it, any help would be
> > > greatly appreciated, thanks- Hide quoted text -
>
> - Show quoted text -


Re: Windows slave

2012-03-29 Thread Sion
Suri, have you installed on Windows as a service? This will allow the
master to stay connected to the node when logged off, however if the
node is switched off (no power) this will be impossible anyway.

On Mar 29, 11:31 am, Suri  wrote:
> Hi
>
> Is it possible to connect Windows slave using ftp/ssh from Master.
> Our Jenkins service is running in Linux. We have lot of windows based
> compilations.
>
> Currently we are running slave.jar in slave machine (Windows).
> The problem is, if someone shutdown the slave system(windows), node
> also getting down.
>
> Linux related node we don’t have any issues. because we are connecting
> slave agent from master using SSH. So we don’t want to depend on slave
> server.
> The same how we can do in windows?
>
> By default windows slave agent should run, even though if we shutdown
> the system.


Scheduled build taking presedence in Build Pipeline

2012-03-29 Thread Sion
I have a build pipeline configured to works as follows:   Unit tests -
> Metrics -> Deployment. The unit test is a polled job that then
triggers my metrics and finally the deployment. So that I dont keep
wiping the CI environment I have the deployment occur nightly... this
introduced a problem. The scheduling for the deployment takes
presedence over whether the upstream was succesful or not. Am I
missing a configuration that says ONLY run the scheduled task if the
upstream was succesful?

Any help is most appreciated.