Skip to content

Instantly share code, notes, and snippets.

@behrendtio
Created September 7, 2011 04:27
Show Gist options
  • Save behrendtio/1199768 to your computer and use it in GitHub Desktop.
Save behrendtio/1199768 to your computer and use it in GitHub Desktop.
Jenkins Email-ext Jelly script
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define">
<BODY>
<B>Build wurde mit dem Ergebnis <I>${build.result}</I> abgeschlossen.</B><BR/>
Dauer: ${build.durationString}.<BR/><BR/>
<TABLE>
<TR><TD><B>Konsolenausgabe</B></TD></TR>
<j:forEach var="line" items="${build.getLog(100)}">
<TR><TD>${line}</TD></TR>
</j:forEach>
</TABLE>
</BODY>
</j:jelly>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment