Skip to content

Commit

Permalink
Fixed issue JENKINS-25452
Browse files Browse the repository at this point in the history
  • Loading branch information
itaior committed Nov 5, 2014
1 parent b7ae48b commit 85b6a61
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 85b6a61

Please sign in to comment.