-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
205 additions
and
307 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
plugin/src/main/java/io/jenkins/plugins/analysis/core/model/QualityGateEvaluationMode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package io.jenkins.plugins.analysis.core.model; | ||
|
||
/** | ||
* Determines how the evaluation of the quality gates is taken into account when the previous result is searched for. | ||
*/ | ||
public enum QualityGateEvaluationMode { | ||
/** | ||
* The quality gate result is ignored. The previous build with results of the same type is selected. | ||
*/ | ||
IGNORE_QUALITY_GATE, | ||
/** | ||
* The quality gate result must be successful. I.e., the history is searched for a build that either passed the | ||
* quality gate or has deactivated the quality gate. | ||
*/ | ||
SUCCESSFUL_QUALITY_GATE | ||
} |
Oops, something went wrong.