Skip to content

Commit

Permalink
Merge pull request #57 from itaior/master
Browse files Browse the repository at this point in the history
Fixed issue JENKINS-25452
  • Loading branch information
itaior committed Nov 6, 2014
2 parents b7ae48b + 85b6a61 commit 8dfb163
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -178,8 +178,10 @@ public boolean perform(final AbstractBuild<?, ? > build, final Launcher launcher
continue;
}
}
if (getScmChange(subJob,phaseConfig,multiJobBuild ,listener,launcher ) >= 4) {
continue;
if (phaseConfig.isBuildOnlyIfSCMChanges()){
if( getScmChange(subJob,phaseConfig,multiJobBuild ,listener,launcher ) >= 4) {
continue;
}
}
reportStart(listener, subJob);
List<Action> actions = new ArrayList<Action>();
Expand Down

0 comments on commit 8dfb163

Please sign in to comment.