Package | Description |
---|---|
hudson.fsp | |
hudson.model |
Core object model that are bound to URLs via stapler, rooted at Hudson.
|
hudson.model.listeners |
Listener interfaces for various events that occur inside the server.
|
hudson.scm |
Hudson's interface with source code management systems.
|
hudson.slaves |
Code related to slaves.
|
hudson.tasks | |
jenkins.model | |
jenkins.scm | |
jenkins.tasks | |
jenkins.util |
Modifier and Type | Method and Description |
---|---|
boolean |
WorkspaceSnapshotSCM.checkout(AbstractBuild build,
Launcher launcher,
FilePath workspace,
BuildListener listener,
File changelogFile) |
Modifier and Type | Class and Description |
---|---|
class |
StreamBuildListener
BuildListener that writes to an OutputStream . |
Modifier and Type | Field and Description |
---|---|
protected BuildListener |
AbstractBuild.AbstractBuildExecution.listener
Output/progress of this build goes here.
|
Modifier and Type | Method and Description |
---|---|
BuildListener |
AbstractBuild.AbstractBuildExecution.getListener() |
Modifier and Type | Method and Description |
---|---|
void |
WorkspaceListener.beforeUse(AbstractBuild b,
FilePath workspace,
BuildListener listener)
Called before a build uses a workspace.
|
void |
CheckPoint.block(BuildListener listener,
String waiter)
Like
CheckPoint.block() but allows for richer logging. |
boolean |
AbstractProject.checkout(AbstractBuild build,
Launcher launcher,
BuildListener listener,
File changelogFile) |
abstract void |
Run.RunExecution.cleanUp(BuildListener listener)
Performs final clean up action.
|
void |
Build.BuildExecution.cleanUp(BuildListener listener) |
void |
AbstractBuild.AbstractBuildExecution.cleanUp(BuildListener listener) |
protected Launcher |
AbstractBuild.AbstractBuildExecution.createLauncher(BuildListener listener)
Creates a
Launcher that this build will use. |
protected Result |
Build.BuildExecution.doRun(BuildListener listener) |
protected abstract Result |
AbstractBuild.AbstractBuildExecution.doRun(BuildListener listener)
The portion of a build that is specific to a subclass of
AbstractBuild
goes here. |
abstract void |
BuildStepListener.finished(AbstractBuild build,
BuildStep bs,
BuildListener listener,
boolean canContinue)
Called when a buildStep has completed.
|
boolean |
JobProperty.perform(AbstractBuild<?,?> build,
Launcher launcher,
BuildListener listener)
Runs the step over the given build and reports the progress to the listener.
|
protected boolean |
AbstractBuild.AbstractBuildExecution.perform(BuildStep bs,
BuildListener listener)
Calls a build step.
|
protected void |
AbstractBuild.AbstractBuildExecution.performAllBuildStep(BuildListener listener,
Iterable<? extends BuildStep> buildSteps,
boolean phase)
Deprecated.
|
protected void |
AbstractBuild.AbstractBuildExecution.performAllBuildStep(BuildListener listener,
Map<?,? extends BuildStep> buildSteps,
boolean phase)
Deprecated.
|
protected boolean |
AbstractBuild.AbstractBuildExecution.performAllBuildSteps(BuildListener listener,
Iterable<? extends BuildStep> buildSteps,
boolean phase)
Runs all the given build steps, even if one of them fail.
|
protected boolean |
AbstractBuild.AbstractBuildExecution.performAllBuildSteps(BuildListener listener,
Map<?,? extends BuildStep> buildSteps,
boolean phase) |
abstract void |
Run.RunExecution.post(BuildListener listener)
Performs the post-build action.
|
void |
AbstractBuild.AbstractBuildExecution.post(BuildListener listener) |
void |
Build.BuildExecution.post2(BuildListener listener) |
protected abstract void |
AbstractBuild.AbstractBuildExecution.post2(BuildListener listener) |
boolean |
JobProperty.prebuild(AbstractBuild<?,?> build,
BuildListener listener) |
protected boolean |
AbstractBuild.AbstractBuildExecution.preBuild(BuildListener listener,
Collection<? extends BuildStep> steps) |
protected boolean |
AbstractBuild.AbstractBuildExecution.preBuild(BuildListener listener,
Iterable<? extends BuildStep> steps) |
protected boolean |
AbstractBuild.AbstractBuildExecution.preBuild(BuildListener listener,
Map<?,? extends BuildStep> steps) |
abstract Result |
Run.RunExecution.run(BuildListener listener)
Performs the main build and returns the status code.
|
Result |
AbstractBuild.AbstractBuildExecution.run(BuildListener listener) |
abstract void |
BuildStepListener.started(AbstractBuild build,
BuildStep bs,
BuildListener listener)
Called when a buildStep is performed.
|
boolean |
Environment.tearDown(AbstractBuild build,
BuildListener listener)
Runs after the
Builder completes, and performs a tear down. |
Modifier and Type | Method and Description |
---|---|
void |
SCMListener.onChangeLogParsed(AbstractBuild<?,?> build,
BuildListener listener,
ChangeLogSet<?> changelog)
Deprecated.
|
Environment |
RunListener.setUpEnvironment(AbstractBuild build,
Launcher launcher,
BuildListener listener)
Runs before the
SCM.checkout(AbstractBuild, Launcher, FilePath, BuildListener, File) runs, and performs a set up. |
Modifier and Type | Method and Description |
---|---|
boolean |
SCM.checkout(AbstractBuild<?,?> build,
Launcher launcher,
FilePath workspace,
BuildListener listener,
File changelogFile)
Deprecated.
|
protected boolean |
SCM.createEmptyChangeLog(File changelogFile,
BuildListener listener,
String rootTag)
Deprecated.
|
void |
SCM.postCheckout(AbstractBuild<?,?> build,
Launcher launcher,
FilePath workspace,
BuildListener listener)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Environment |
EnvironmentVariablesNodeProperty.setUp(AbstractBuild build,
Launcher launcher,
BuildListener listener) |
Environment |
NodeProperty.setUp(AbstractBuild build,
Launcher launcher,
BuildListener listener)
Runs before the
SCM.checkout(AbstractBuild, Launcher, FilePath, BuildListener, File) runs, and performs a set up. |
Modifier and Type | Method and Description |
---|---|
Launcher |
BuildWrapper.decorateLauncher(AbstractBuild build,
Launcher launcher,
BuildListener listener)
Provides an opportunity for a
BuildWrapper to decorate a Launcher to be used in the build. |
static boolean |
BuildTrigger.execute(AbstractBuild build,
BuildListener listener)
Convenience method to trigger downstream builds.
|
static boolean |
BuildTrigger.execute(AbstractBuild build,
BuildListener listener,
BuildTrigger trigger)
Deprecated.
since 1.341; use
BuildTrigger.execute(AbstractBuild,BuildListener) |
boolean |
Maven.perform(AbstractBuild<?,?> build,
Launcher launcher,
BuildListener listener) |
boolean |
BuildStep.perform(AbstractBuild<?,?> build,
Launcher launcher,
BuildListener listener)
Runs the step over the given build and reports the progress to the listener.
|
boolean |
CommandInterpreter.perform(AbstractBuild<?,?> build,
Launcher launcher,
BuildListener listener) |
boolean |
BuildStepCompatibilityLayer.perform(AbstractBuild<?,?> build,
Launcher launcher,
BuildListener listener)
Deprecated.
|
boolean |
BuildTrigger.perform(AbstractBuild build,
Launcher launcher,
BuildListener listener) |
boolean |
BuildStepCompatibilityLayer.perform(Build<?,?> build,
Launcher launcher,
BuildListener listener)
Deprecated.
|
abstract boolean |
BuildStepMonitor.perform(BuildStep bs,
AbstractBuild build,
Launcher launcher,
BuildListener listener)
Calls
BuildStep.perform(AbstractBuild, Launcher, BuildListener) with the proper synchronization. |
boolean |
BuildStep.prebuild(AbstractBuild<?,?> build,
BuildListener listener)
Runs before the build begins.
|
boolean |
BuildStepCompatibilityLayer.prebuild(AbstractBuild<?,?> build,
BuildListener listener)
Deprecated.
|
boolean |
BuildStepCompatibilityLayer.prebuild(Build<?,?> build,
BuildListener listener)
Deprecated.
|
boolean |
Builder.prebuild(Build build,
BuildListener listener)
Default implementation that does nothing.
|
boolean |
Publisher.prebuild(Build build,
BuildListener listener)
Deprecated.
since 1.150
|
void |
BuildWrapper.preCheckout(AbstractBuild build,
Launcher launcher,
BuildListener listener)
Provides an opportunity for a
BuildWrapper to perform some actions before SCM checkout. |
BuildWrapper.Environment |
BuildWrapper.setUp(AbstractBuild build,
Launcher launcher,
BuildListener listener)
Runs before the
Builder runs (but after the checkout has occurred), and performs a set up. |
BuildWrapper.Environment |
BuildWrapper.setUp(Build build,
Launcher launcher,
BuildListener listener)
Deprecated.
since 2007-10-28.
Use
BuildWrapper.setUp(AbstractBuild, Launcher, BuildListener) instead. |
boolean |
BuildWrapper.Environment.tearDown(AbstractBuild build,
BuildListener listener)
Runs after the
Builder completes, and performs a tear down. |
boolean |
BuildWrapper.Environment.tearDown(Build build,
BuildListener listener)
Deprecated.
since 2007-10-28.
Use
BuildWrapper.Environment.tearDown(AbstractBuild, BuildListener) instead. |
protected void |
Maven.wrapUpArguments(ArgumentListBuilder args,
String normalizedTarget,
AbstractBuild<?,?> build,
Launcher launcher,
BuildListener listener)
Allows the derived type to make additional modifications to the arguments list.
|
Modifier and Type | Method and Description |
---|---|
abstract void |
ArtifactManager.archive(FilePath workspace,
Launcher launcher,
BuildListener listener,
Map<String,String> artifacts)
Archive all configured artifacts from a build.
|
void |
StandardArtifactManager.archive(FilePath workspace,
Launcher launcher,
BuildListener listener,
Map<String,String> artifacts) |
Modifier and Type | Method and Description |
---|---|
void |
SCMCheckoutStrategy.preCheckout(AbstractBuild<?,?> build,
Launcher launcher,
BuildListener listener)
Performs the pre checkout step.
|
Modifier and Type | Method and Description |
---|---|
Launcher |
SimpleBuildWrapper.decorateLauncher(AbstractBuild build,
Launcher launcher,
BuildListener listener)
May be overridden but this will only take effect when used as a
BuildWrapper on an AbstractProject . |
void |
SimpleBuildWrapper.preCheckout(AbstractBuild build,
Launcher launcher,
BuildListener listener) |
BuildWrapper.Environment |
SimpleBuildWrapper.setUp(AbstractBuild build,
Launcher launcher,
BuildListener listener) |
Modifier and Type | Class and Description |
---|---|
class |
BuildListenerAdapter
Wraps a
TaskListener as a BuildListener for compatibility with APIs which historically expected the latter. |
Modifier and Type | Method and Description |
---|---|
static BuildListener |
BuildListenerAdapter.wrap(TaskListener l) |
Copyright © 2016. All rights reserved.