Re: Jenkins Plugin for custom email notification

2020-07-18 Thread DHAVAL JAISWAL
If anyone helps with the raised query. Any customize solution if someone suggests. On Fri, Jul 17, 2020 at 12:37 PM tamilarasan kulasekaran < tamilarasan.k...@gmail.com> wrote: > Hi,We are using Jenkins for CI to build the app. I have a requirement in > Jenkins i.e., whenever my build fails, I wa

Re: Jenkins Plugin for custom email notification

2020-07-18 Thread Slide
There are two email plugins available for Jenkins, Mailer ( https://plugins.jenkins.io/mailer/) and the Extended Email Plugin ( https://plugins.jenkins.io/email-ext/). You can look at those two and see if one meets your needs. Regards, Alex On Sat, Jul 18, 2020 at 12:22 AM DHAVAL JAISWAL wrote:

Calling writeFile for every entry of a map requires somewhat ugly code

2020-07-18 Thread David Karr
I'm posting this mostly so people can find it. Perhaps it's already well-known, and perhaps I'm missing some simple thing that makes this easier to do, but I think not. In my Jenkinsfile, I need to iterate over a map created with Groovy, calling "writeFile" with the key as the file name, and t

Re: Calling writeFile for every entry of a map requires somewhat ugly code

2020-07-18 Thread Gianluca
I use a different approach ... but it may not fits your use case. In any case, usually when I have to perform operation on each element of a Map, I end up on transform the Map on steps that I can feed to parallel steps { stepsMap = [:] stepsMap = dataMap.collectEntries{[ "Name of step to