Skip to content

Commit

Permalink
Don't automatically mark the parent job as SUCCESS (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
danudey authored Nov 12, 2020
1 parent 7b3f5aa commit 02ee6ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public boolean mapBuildStepResult(Result r) {
public Result mapBuildResult(Result r) {
if (failureThreshold!=null && r.isWorseOrEqualTo(failureThreshold)) return FAILURE;
if (unstableThreshold!=null && r.isWorseOrEqualTo(unstableThreshold)) return UNSTABLE;
return SUCCESS;
return null;
}

@Extension
Expand Down

0 comments on commit 02ee6ea

Please sign in to comment.