|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Run | |
|---|---|
| hudson | |
| hudson.cli | Server-side CLI commands for Hudson. |
| hudson.console | Beef up the plain text console output by adding HTML markup. |
| hudson.diagnosis | |
| hudson.matrix | Matrix project |
| hudson.maven | Maven support. |
| 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.tasks | Built-in Builders and Publishers that perform the actual heavy-lifting of a build. |
| hudson.tasks.junit | Model objects that represent JUnit test reports. |
| hudson.tasks.test | Defines contracts that need to be implemented by a test reporting action (such as the built-in JUnit one). |
| hudson.util | Other miscellaneous utility code |
| jenkins.model | |
| org.jvnet.hudson.test | Test harness for Jenkins and its plugins. |
| Uses of Run in hudson |
|---|
| Constructors in hudson with parameters of type Run | |
|---|---|
Functions.RunUrl(Run run,
String head,
String base,
String rest)
|
|
| Uses of Run in hudson.cli |
|---|
| Methods in hudson.cli that return Run | |
|---|---|
protected Run |
CommandDuringBuild.getCurrentlyBuilding()
This method makes sense only when called from within the build kicked by Hudson. |
| Uses of Run in hudson.console |
|---|
| Methods in hudson.console with parameters of type Run | |
|---|---|
static String |
ModelHyperlinkNote.encodeTo(Run r)
|
| Uses of Run in hudson.diagnosis |
|---|
| Fields in hudson.diagnosis with type parameters of type Run | |
|---|---|
static RunListener<Run> |
OldDataMonitor.runDeleteListener
|
| Uses of Run in hudson.matrix |
|---|
| Subclasses of Run in hudson.matrix | |
|---|---|
class |
MatrixBuild
Build of MatrixProject. |
class |
MatrixRun
Execution of MatrixConfiguration. |
| Uses of Run in hudson.maven |
|---|
| Subclasses of Run in hudson.maven | |
|---|---|
class |
AbstractMavenBuild<P extends AbstractMavenProject<P,B>,B extends AbstractMavenBuild<P,B>>
|
class |
MavenBuild
Run for MavenModule. |
class |
MavenModuleSetBuild
Build for MavenModuleSet. |
| Uses of Run in hudson.model |
|---|
| Classes in hudson.model with type parameters of type Run | |
|---|---|
class |
Job<JobT extends Job<JobT,RunT>,RunT extends Run<JobT,RunT>>
A job is an runnable entity under the monitoring of Hudson. |
class |
Run<JobT extends Job<JobT,RunT>,RunT extends Run<JobT,RunT>>
A particular execution of Job. |
class |
RunMap<R extends Run<?,R>>
Map from build number to Run. |
static interface |
RunMap.Constructor<R extends Run<?,R>>
Run factory. |
class |
ViewJob<JobT extends ViewJob<JobT,RunT>,RunT extends Run<JobT,RunT>>
Job that monitors activities that happen outside Hudson,
which requires occasional batch reload activity to obtain the up-to-date information. |
| Subclasses of Run in hudson.model | |
|---|---|
class |
AbstractBuild<P extends AbstractProject<P,R>,R extends AbstractBuild<P,R>>
Base implementation of Runs that build software. |
class |
Build<P extends Project<P,B>,B extends Build<P,B>>
A build of a Project. |
class |
FreeStyleBuild
|
| Fields in hudson.model declared as Run | |
|---|---|
protected RunT |
Run.nextBuild
Next build. |
protected RunT |
Run.previousBuild
Previous build. |
| Fields in hudson.model with type parameters of type Run | |
|---|---|
static FeedAdapter<Run> |
Run.FEED_ADAPTER
FeedAdapter to produce feed from the summary of this build. |
static FeedAdapter<Run> |
Run.FEED_ADAPTER_LATEST
FeedAdapter to produce feeds to show one build per project. |
protected static HistoryWidget.Adapter<Run> |
Job.HISTORY_ADAPTER
|
static Comparator<Run> |
Run.ORDER_BY_DATE
Sort by date. |
| Methods in hudson.model that return Run | |
|---|---|
static Run<?,?> |
Run.fromExternalizableId(String id)
|
Run<?,?> |
BuildTimelineWidget.getFirstBuild()
|
Run<?,?> |
BuildTimelineWidget.getLastBuild()
|
Run |
RunParameterValue.getRun()
|
Run |
Fingerprint.BuildPtr.getRun()
Gets the Job that this pointer points to,
or null if such a job no longer exists. |
Run<?,?> |
Cause.UpstreamCause.getUpstreamRun()
|
abstract Run<?,?> |
PermalinkProjectAction.Permalink.resolve(Job<?,?> job)
Resolves the permalink to a build. |
| Methods in hudson.model with parameters of type Run | |
|---|---|
abstract void |
EnvironmentContributor.buildEnvironmentFor(Run r,
EnvVars envs,
TaskListener listener)
Contributes environment variables used for a build. |
Collection<? extends Action> |
TransientBuildActionFactory.createFor(Run target)
Creates actions for the given build. |
Fingerprint |
FingerprintMap.getOrCreate(Run build,
String fileName,
String md5sum)
|
static ResultTrend |
ResultTrend.getResultTrend(Run<?,?> run)
Returns the result trend of a run. |
boolean |
Fingerprint.BuildPtr.is(Run r)
Returns true if Fingerprint.BuildPtr points to the given run. |
void |
RunAction.onAttached(Run r)
Called when the action is aded to the Run object. |
void |
CauseAction.onAttached(Run owner)
When hooked up to build, notify Causes. |
boolean |
Cause.UpstreamCause.pointsTo(Run<?,?> r)
Returns true if this cause points to the specified build. |
void |
Executor.recordCauseOfInterruption(Run<?,?> build,
TaskListener listener)
report cause of interruption and record it to the build, if available. |
| Constructors in hudson.model with parameters of type Run | |
|---|---|
Cause.UpstreamCause(Run<?,?> up)
|
|
Fingerprint.BuildPtr(Run run)
|
|
Fingerprint(Run build,
String fileName,
byte[] md5sum)
|
|
| Uses of Run in hudson.model.listeners |
|---|
| Classes in hudson.model.listeners with type parameters of type Run | |
|---|---|
class |
RunListener<R extends Run>
Receives notifications about builds. |
| Methods in hudson.model.listeners with parameters of type Run | |
|---|---|
static void |
RunListener.fireCompleted(Run r,
TaskListener listener)
Fires the RunListener.onCompleted(Run, TaskListener) event. |
static void |
RunListener.fireDeleted(Run r)
Fires the RunListener.onFinalized(Run) event. |
static void |
RunListener.fireFinalized(Run r)
Fires the RunListener.onFinalized(Run) event. |
static void |
RunListener.fireStarted(Run r,
TaskListener listener)
Fires the RunListener.onStarted(Run, TaskListener) event. |
| Uses of Run in hudson.tasks |
|---|
| Methods in hudson.tasks with parameters of type Run | |
|---|---|
void |
Fingerprinter.FingerprintAction.onAttached(Run r)
|
| Uses of Run in hudson.tasks.junit |
|---|
| Methods in hudson.tasks.junit that return Run | |
|---|---|
Run<?,?> |
CaseResult.getFailedSinceRun()
|
Run<?,?> |
TestResult.getFailedSinceRun()
If this test failed, then return the run when this test started failing. |
| Uses of Run in hudson.tasks.test |
|---|
| Methods in hudson.tasks.test that return Run | |
|---|---|
Run<?,?> |
TestResult.getFailedSinceRun()
If this test failed, then return the run when this test started failing. |
| Methods in hudson.tasks.test with parameters of type Run | |
|---|---|
void |
AggregatedTestResultPublisher.TestResultAction.RunListenerImpl.onCompleted(Run run,
TaskListener listener)
|
| Uses of Run in hudson.util |
|---|
| Classes in hudson.util with type parameters of type Run | |
|---|---|
class |
RunList<R extends Run>
List of Runs, sorted in the descending date order. |
| Methods in hudson.util with type parameters of type Run | ||
|---|---|---|
static
|
RunList.fromRuns(Collection<? extends R> runs)
|
|
| Uses of Run in jenkins.model |
|---|
| Methods in jenkins.model that return Run | |
|---|---|
Run<?,?> |
PeepholePermalink.resolve(Job<?,?> job)
Resolves the permalink by using the cache if possible. |
| Methods in jenkins.model with parameters of type Run | |
|---|---|
abstract boolean |
PeepholePermalink.apply(Run<?,?> run)
Checks if the given build satisfies the peep-hole criteria. |
void |
CoreEnvironmentContributor.buildEnvironmentFor(Run r,
EnvVars env,
TaskListener listener)
|
void |
PeepholePermalink.RunListenerImpl.onCompleted(Run<?,?> run,
TaskListener listener)
See if the new build matches any of the peephole permalink. |
void |
PeepholePermalink.RunListenerImpl.onDeleted(Run run)
If any of the peephole permalink points to the build to be deleted, update it to point to the new location. |
protected void |
PeepholePermalink.updateCache(Job<?,?> job,
Run<?,?> b)
Remembers the value 'n' in the cache for future PeepholePermalink.resolve(Job). |
| Uses of Run in org.jvnet.hudson.test |
|---|
| Methods in org.jvnet.hudson.test with type parameters of type Run | ||
|---|---|---|
|
JenkinsRule.assertBuildStatus(Result status,
R r)
Asserts that the outcome of the build is a specific outcome. |
|
|
HudsonTestCase.assertBuildStatus(Result status,
R r)
Asserts that the outcome of the build is a specific outcome. |
|
|
JenkinsRule.assertBuildStatusSuccess(Future<? extends R> r)
|
|
|
HudsonTestCase.assertBuildStatusSuccess(Future<? extends R> r)
|
|
|
JenkinsRule.assertBuildStatusSuccess(R r)
|
|
|
HudsonTestCase.assertBuildStatusSuccess(R r)
|
|
| Methods in org.jvnet.hudson.test with parameters of type Run | |
|---|---|
void |
JenkinsRule.assertLogContains(String substring,
Run run)
Asserts that the console output of the build contains the given substring. |
void |
HudsonTestCase.assertLogContains(String substring,
Run run)
Asserts that the console output of the build contains the given substring. |
void |
JenkinsRule.assertLogNotContains(String substring,
Run run)
Asserts that the console output of the build does not contain the given substring. |
void |
HudsonTestCase.assertLogNotContains(String substring,
Run run)
Asserts that the console output of the build does not contain the given substring. |
static String |
JenkinsRule.getLog(Run run)
Get entire log file (this method is deprecated in hudson.model.Run, but in tests it is OK to load entire log). |
protected static String |
HudsonTestCase.getLog(Run run)
Get entire log file (this method is deprecated in hudson.model.Run, but in tests it is OK to load entire log). |
com.gargoylesoftware.htmlunit.html.HtmlPage |
JenkinsRule.WebClient.getPage(Run r)
Short for getPage(r,""), to access the top page of a build. |
com.gargoylesoftware.htmlunit.html.HtmlPage |
HudsonTestCase.WebClient.getPage(Run r)
Short for getPage(r,""), to access the top page of a build. |
com.gargoylesoftware.htmlunit.html.HtmlPage |
JenkinsRule.WebClient.getPage(Run r,
String relative)
Accesses a page inside Run. |
com.gargoylesoftware.htmlunit.html.HtmlPage |
HudsonTestCase.WebClient.getPage(Run r,
String relative)
Accesses a page inside Run. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||