Package com.atlassian.bamboo.build
Interface CustomBuildCompleteAction
-
public interface CustomBuildCompleteAction
A 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 void
run(@NotNull Buildable buildable, @NotNull BuildResults buildResult)
Deprecated.since 6.10 Using mutable representation of class is strongly discouraged.void
run(@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
- - theBuildable
plan objectbuildResult
- - theBuildResults
object that holds information
-
run
void run(@NotNull @NotNull ImmutableBuildable buildable, @NotNull @NotNull BuildResults buildResult)
This action will run when a build completes.- Parameters:
buildable
- - theImmutableBuildable
plan objectbuildResult
- - theBuildResults
object that holds information- Since:
- 6.10
-
-