Re: Ugrading a quite old Jenkins server version (1.564) to the latest (1.636)

2015-11-08 Thread Stephen Connolly
FYI You are rather probably going to want to upgrade when the security releases come out later this week. (And you have applied the short-term fix to the 0-day already haven't you?) On Friday 6 November 2015, James Nord wrote: > On 06/11/2015 18:49, jks3 wrote: > > Hi, > > While not a newbie to

how to do Email Attachments with date wise files

2015-11-08 Thread sumanth veera
Hi All, we have day wise reports with this format("sampe_08-11-2015.pdf") in the workspace of the job and how to give the path/ file name for the same in the email notification attachments please help me in get in this done Thanks sumanth . -- You received this message because you are s

Re: how to do Email Attachments with date wise files

2015-11-08 Thread Slide
The Mailer plugin fired not support attachments. Are you using email-ext? If so, did you read the help text for the attachments field? On Sun, Nov 8, 2015, 05:07 sumanth veera wrote: > Hi All, > > we have day wise reports with this format("sampe_08-11-2015.pdf") in the > workspace of the job and

Re: parallel view in the build pipeline plugin

2015-11-08 Thread Irfan Sayed
This has resolved. actually, in the "build other project" section, all the jobs gets executed parallel now another issue is , BuildView pipeline is not coming as full screen when clicked I have seen some videos where this view has full screen. However, haven't found any setting in the pipeline conf

Re: how to do Email Attachments with date wise files

2015-11-08 Thread sumanth veera
i am using email extn plugin , i have seen the help for attachment field, but i need to have dynamic file name .because daily a new pdf is generated with that day. On Sunday, 8 November 2015 17:37:03 UTC+5:30, sumanth veera wrote: > > Hi All, > > we have day wise reports with this format("sam

Call for talk proposals for Testing/Automation at FOSDEM 2016

2015-11-08 Thread R. Tyler Croy
On behalf of the Testing/Automation devroom organization group, I would like to invita the Jenkins user community to join us at FOSDEM 2016 but also to submit talk proposals! At various Jenkins user events (JUC, JAMs, etc) I've seen lots of really interesting presentations around testing and deli

confusion in jenkins

2015-11-08 Thread avinashbasoorps
hi every one am new to jenkins any body having time r like to give me guides please give me -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+uns

Re: confusion in jenkins

2015-11-08 Thread Don deJuan
On 11/08/2015 09:08 AM, avinashbasoo...@gmail.com wrote: > hi every one am new to jenkins any body having time r like to give me > guides please give me > -- > You received this message because you are subscribed to the Google > Groups "Jenkins Users" group. > To unsubscribe from this group and st

Confusion of Maven build jobs sequence

2015-11-08 Thread Martin Schmude
Hello everybody, Currently I am confused about the build sequence determined by Jenkins under the following circumstances. The company I am working at operates a Jenkins server with about 180 Maven build jobs. There are dependencies between the Maven projects defined in their pom.xml. The upstr

Re: how to do Email Attachments with date wise files

2015-11-08 Thread Slide
The help notes that you can use an ant fileset pattern and provides a link to the documentation for fileset patterns. Please read that documentstion. On Sun, Nov 8, 2015, 08:43 sumanth veera wrote: > i am using email extn plugin , i have seen the help for attachment field, > but i need to have d

Confusion of Maven build jobs sequence

2015-11-08 Thread James Nord
Short answer - yes. Each project is polling individually. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com. To view

Selectively building a particular git SHA

2015-11-08 Thread Nathaniel Irons
Hello, Is there a sanctioned way to configure Jenkins to monitor a subset of git branches to build automatically, while also supporting builds of particular SHAs? We've managed this hackishly for several years on a few dozen repos, using a configured list of branches to watch, an optional BUIL

[workflow] How to control the scheduling of node allocations.

2015-11-08 Thread Jim Tilander
Hi, I'm using the workflow plugin to do something like this: node('small') { prologue(); } node('full') { heavy_lifting(); } node('small') { summary(); } There are three distinct part of the build, all running on different nodes. I've also got several of these in flight at the same tim