-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a check to avoid infinite number of builds archived by a job (#1187)
* Add a check to avoid infinite number of builds archived by a job * Restrict the builds to keep to 75 in infinite configurations --------- Signed-off-by: Jose Luis Rivero <[email protected]>
- Loading branch information
Showing
5 changed files
with
11 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,7 @@ class OSRFLinuxBackportPkg | |
|
||
logRotator { | ||
artifactNumToKeep(20) | ||
numToKeep(75) | ||
} | ||
|
||
parameters { | ||
|
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 |
---|---|---|
|
@@ -145,6 +145,7 @@ bottle_job_builder.with | |
|
||
logRotator { | ||
artifactNumToKeep(10) | ||
numToKeep(75) | ||
} | ||
|
||
axes { | ||
|
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 |
---|---|---|
|
@@ -105,6 +105,7 @@ ratt_pkg_job.with | |
|
||
logRotator { | ||
artifactNumToKeep(10) | ||
numToKeep(75) | ||
} | ||
|
||
concurrentBuild(true) | ||
|
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