Package com.atlassian.bamboo.build
Interface CustomBuildCompleteAction
-
public interface CustomBuildCompleteActionA plugin point for performing custom actions immediately after the build execution has finished. There is no guarantee that the actions occur prior to the build being saved.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default voidrun(@NotNull Buildable buildable, @NotNull BuildResults buildResult)Deprecated.since 6.10 Using mutable representation of class is strongly discouraged.voidrun(@NotNull ImmutableBuildable buildable, @NotNull BuildResults buildResult)This action will run when a build completes.
-
-
-
Method Detail
-
run
@Deprecated default void run(@NotNull @NotNull Buildable buildable, @NotNull @NotNull BuildResults buildResult)
Deprecated.since 6.10 Using mutable representation of class is strongly discouraged. Userun(ImmutableBuildable, BuildResults)instead.This action will run when a build completes.- Parameters:
buildable- - theBuildableplan objectbuildResult- - theBuildResultsobject that holds information
-
run
void run(@NotNull @NotNull ImmutableBuildable buildable, @NotNull @NotNull BuildResults buildResult)This action will run when a build completes.- Parameters:
buildable- - theImmutableBuildableplan objectbuildResult- - theBuildResultsobject that holds information- Since:
- 6.10
-
-