This documentation relates to an earlier version of Bamboo.
View

Unknown macro: {spacejump}

or visit the current documentation home.

You can extend the standard repository functionality by implementing any of the optional interfaces described below.

このページの内容


com.atlassian.bamboo.v2.build.repository.RepositoryEventAware

説明

The com.atlassian.bamboo.v2.build.repository.RepositoryEventAware interface allows you to instruct the repository to perform a custom action before and/or after the checkout/update occurs.

Methods

void preRetrieveSourceCode(@NotNull BuildContext buildContext);

This will run before the retrieveSourceCode method is called. It allows you to do custom actions to prepare for the checkout, such as some customised cleanup of the source directory.

void postRetrieveSourceCode(@NotNull BuildContext buildContext);

This will run after the retrieveSourceCode method is called. The extension point allows you to easily set custom data, do any post checkout collection of data.

  • ラベルなし