Skip to content

Commit

Permalink
Merge pull request #10 from rpetti/JENKINS-19954
Browse files Browse the repository at this point in the history
[FIXED JENKINS-19954] fixing logic for axes builds
  • Loading branch information
gboissinot committed Oct 10, 2013
2 parents 3975f05 + a5599c9 commit 636cddc
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -79,8 +79,7 @@ public boolean endBuild() throws InterruptedException, IOException {
public boolean perform(AbstractBuild<?, ?> build, final Launcher launcher, final BuildListener listener) throws InterruptedException, IOException {
Job job = build.getProject();
boolean axe = isMatrixAxe(job);
if ( (axe && executeOn.axes()) // matrix axe, and set to execute on axes' nodes
|| (!axe)) { // neither matrix head nor axe
if ( (axe && executeOn.axes()) ) { // matrix axe, and set to execute on axes' nodes
return _perform(build, launcher, listener);
}
return true;
Expand Down

0 comments on commit 636cddc

Please sign in to comment.