Skip to content

Commit

Permalink
Merge pull request #53 from hschaa/master
Browse files Browse the repository at this point in the history
[FIXED JENKINS-16476] Add new "last completed build" selector
  • Loading branch information
ikedam committed Jan 17, 2015
2 parents 0f9ce83 + c03e526 commit 2269525
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
@@ -0,0 +1,51 @@
/*
* The MIT License
*
* Copyright (c) 2004-2011, Sun Microsystems, Inc., Alan Harder
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package hudson.plugins.copyartifact;

import hudson.EnvVars;
import hudson.Extension;
import hudson.model.Descriptor;
import hudson.model.Result;
import hudson.model.Run;
import org.kohsuke.stapler.DataBoundConstructor;

/**
* Copy artifacts from the latest build (ignoring the build status)
* @author Helmut Schaa
*/
public class LastCompletedBuildSelector extends BuildSelector {

@DataBoundConstructor
public LastCompletedBuildSelector() { }

@Override
public boolean isSelectable(Run<?,?> run, EnvVars env) {
return true;
}

@Extension
public static final Descriptor<BuildSelector> DESCRIPTOR =
new SimpleBuildSelectorDescriptor(
LastCompletedBuildSelector.class, Messages._LastCompletedBuildSelector_DisplayName());
}
Expand Up @@ -12,6 +12,7 @@ CopyArtifact.MissingSrcWorkspace=Unable to access upstream workspace for artifac
CopyArtifact.MissingWorkspace=Unable to access workspace for artifact copy. Slave node offline?
CopyArtifact.ParameterizedName=Value references a build parameter, so it cannot be validated.
PermalinkBuildSelector.DisplayName=Specified by permalink
LastCompletedBuildSelector.DisplayName=Last completed build (ignoring build status)
StatusBuildSelector.DisplayName=Latest successful build
SavedBuildSelector.DisplayName=Latest saved build (marked "keep forever")
SpecificBuildSelector.DisplayName=Specific build
Expand Down

0 comments on commit 2269525

Please sign in to comment.