Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jenkins Email-ext Pre-send Script

I want to edit email body in pre-send script in Email-ext Jenkins plugin. What language should I use to write code? Bash script or other? Can you add some piece of code? Thanks.

like image 562
akozin Avatar asked Aug 15 '12 09:08

akozin


1 Answers

The language you must use is Groovy, you can test your piece of code in the script console under Jenkins > Manage > script for anything that doesn't rely on build specific values.

Example that cancels sending the email if there have been no changes (tested when using Git):

if (build.changeSet.emptySet) cancel=true;

Groovy is some sort of convenient scripting language that really uses Java behind the scenes, so you'll probably have to dig into the Jenkins java classes to see what is defined/what objects you can use. For instance the build variable in my sample code is really the java object FreeStyleBuild when I run it on my Jenkins job (which is a free style build job obviously).

like image 145
Lionel Alberti Avatar answered Oct 13 '22 07:10

Lionel Alberti