User Interface plugin modules
Build Lifecycle plugin modules
Notification plugin modules
System plugin modules

Pre-Build Action module

Available:

Bamboo 1.1 and later

Description

The PreBuildAction module allows you to define a custom process that runs before your build begins. This will occur immediately before the builder begins execution. The PreBuildAction will have access to the BuildResults object which contains the information for the build.

Interface

Pre Build Action modules must implement the com.atlassian.bamboo.build.CustomPreBuildAction interface.

Sample Module Descriptor Element

1
2
<preBuildAction key="vcsVersion" name="VCS Version Collector"
                  class="com.atlassian.bamboo.vcsversion.VCSVersionReader">
    <description>A custom action that reads the identifier of a source repository version and stores it into the
    custom data map of a build.</description>
    <resource type="freemarker" name="edit" location="templates/plugins/preBuildAction/vcsVersionReaderEdit.ftl"/>
    <resource type="freemarker" name="view" location="templates/plugins/preBuildAction/vcsVersionReaderView.ftl"/>
  </preBuildAction>

Rate this page: