Skip to content

Commit

Permalink
JENKINS-11210 - ws-cleanup should be excuted as the first or the last…
Browse files Browse the repository at this point in the history
… step in case of pre build cleanup or post build cleanup, respectively
  • Loading branch information
vjuranek committed Oct 11, 2011
1 parent 65f170a commit 0a2a128
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -67,7 +67,7 @@ public void preCheckout(AbstractBuild build, Launcher launcher,
}
}

@Extension
@Extension(ordinal=99999)
public static final class DescriptorImpl extends Descriptor<BuildWrapper> {

public String getDisplayName() {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/ws_cleanup/WsCleanup.java
Expand Up @@ -59,7 +59,7 @@ public BuildStepMonitor getRequiredMonitorService(){
return BuildStepMonitor.STEP;
}

@Extension
@Extension(ordinal=-99999)
public static final class DescriptorImpl extends BuildStepDescriptor<Publisher> {

public DescriptorImpl() {
Expand Down

0 comments on commit 0a2a128

Please sign in to comment.