hudson.tasks.BuildStep Java Examples

The following examples show how to use hudson.tasks.BuildStep. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: FlexiblePublishITest.java    From warnings-ng-plugin with MIT License 5 votes vote down vote up
private ConditionalPublisher constructConditionalPublisher(final BuildStep publisher) {
    return new ConditionalPublisher(
            new AlwaysRun(),
            Collections.singletonList(publisher),
            new Run(),
            false,
            null,
            null,
            null
    );
}
 
Example #2
Source File: DynamicBuild.java    From DotCi with MIT License 4 votes vote down vote up
@Override
public boolean performStep(final BuildStep execution, final BuildListener listener) throws IOException, InterruptedException {
    return perform(execution, listener);
}
 
Example #3
Source File: DynamicSubBuild.java    From DotCi with MIT License 4 votes vote down vote up
@Override
public boolean performStep(final BuildStep buildStep, final BuildListener listener) throws InterruptedException, IOException {
    return perform(buildStep, listener);
}
 
Example #4
Source File: BuildExecutionContext.java    From DotCi with MIT License votes vote down vote up
boolean performStep(BuildStep buildStep, BuildListener listener) throws InterruptedException, IOException;