Plugin Information
This plugin sets the description for each build, based upon a RegEx test of the build log file.
To use the plug in, you must tick it in the Post Build Actions, in your job configuration page. Once ticked, you will notice that it asks for a RegEx. This RegEx is used to scan the build log file, line by line (multi lines are not supported), and it will take the first line that matches your RegEx. The description that is then set for that particular build, is taken from the first Capturing Group. You must specify at least one capturing group in your RegEx by putting the part you want to select between parentheses (if you specify more, these will be ignored).
You can thus use this to have your build script echo out some particular information such as the modifying authors from SCM, or the datestamp, or the published version number, or....
For example, if your build file contains the lines
Then in order to set the build description to My Application Version XYZ, you would set the RegEx to be:
A Maven release build would typically have a line like:
So the following regex would select the version:
Using multiple capture groups
You can now use groups captured by the regex in descriptions (e.g. "foo \1 bar \2").
Changelog
Release 1.6:
- Bugfix (1.5 is only usable for matrix projects)
Release 1.5:
- Large parts are rewritten. Should be backwards compatible -- create an issue if not.
- You can now use groups captured by the regex in descriptions (e.g. "foo \1 bar \2"). Default is still to use the first group as description. (wiki page has not been updated to reflect this)
- Also works for matrix projects
Release 1.4:
- Added option "Use explicit description instead of regexp". Allows user to hard code the description instead of doing a regexp search of build log. Default is off.
Release 1.3:
- Fixes an issue where the RegEx could return only 1 item and cause and array out of bounds problem.
Release 1.2:
- Add ability to set the description for failed builds. On your job configuration page you will need to check the box for setting description upon build failure and if you wish to use a different RegEx then the main one you can enter it in the text box below.
Comments (3)
Jan 13, 2010
Nicholas Hahn says:
Is the description available as an environment variable for another plug-in (i.e...Is the description available as an environment variable for another plug-in (i.e Editable Email Notification) to use?
Jul 23
Rakesh says:
Hi, I also have the same requirement. I want the description exposed as a varia...Hi,
I also have the same requirement. I want the description exposed as a variable so that it can be sent in an email.
--Rakesh
Mar 31
Joe Littlejohn says:
Is it possible to use environment variables in the description? I tried to use t...Is it possible to use environment variables in the description? I tried to use the build number like:
${env['BUILD_NUMBER']}but it didn't get expanded :(