summaryrefslogtreecommitdiff
path: root/perf.groovy
diff options
context:
space:
mode:
authorMichelle McDaniel <adiaaida@gmail.com>2018-05-21 13:17:18 -0700
committerMatt Mitchell <mmitche@microsoft.com>2018-05-21 13:17:18 -0700
commitc07b73a30558a47768329dfbc479b9c8bdb3c08a (patch)
treee71553f9d78c29ec291fff79a6a7390107b150ed /perf.groovy
parent78d858b048b460bd399d537487949f74c708e159 (diff)
downloadcoreclr-c07b73a30558a47768329dfbc479b9c8bdb3c08a.tar.gz
coreclr-c07b73a30558a47768329dfbc479b9c8bdb3c08a.tar.bz2
coreclr-c07b73a30558a47768329dfbc479b9c8bdb3c08a.zip
Reduce the number of days to keep artifacts for perf (#18073)
We are still seeing issues with running out of space on the archive machines due to the size of the perf archives. This change reduces the number of days we store the archives to 14 and the number of archives to keep to 100.
Diffstat (limited to 'perf.groovy')
-rw-r--r--perf.groovy20
1 files changed, 10 insertions, 10 deletions
diff --git a/perf.groovy b/perf.groovy
index b0a2ba9901..e4c890787c 100644
--- a/perf.groovy
+++ b/perf.groovy
@@ -120,9 +120,9 @@ def static getOSGroup(def os) {
newJob.with {
logRotator {
- artifactDaysToKeep(21)
+ artifactDaysToKeep(14)
daysToKeep(30)
- artifactNumToKeep(200)
+ artifactNumToKeep(100)
numToKeep(200)
}
wrappers {
@@ -365,9 +365,9 @@ def static getFullPerfJobName(def project, def os, def isPR) {
newJob.with {
// Enable the log rotator
logRotator {
- artifactDaysToKeep(21)
+ artifactDaysToKeep(14)
daysToKeep(30)
- artifactNumToKeep(200)
+ artifactNumToKeep(100)
numToKeep(200)
}
wrappers {
@@ -641,9 +641,9 @@ parallel(
newJob.with {
logRotator {
- artifactDaysToKeep(21)
+ artifactDaysToKeep(14)
daysToKeep(30)
- artifactNumToKeep(200)
+ artifactNumToKeep(100)
numToKeep(200)
}
wrappers {
@@ -754,9 +754,9 @@ parallel(
newJob.with {
logRotator {
- artifactDaysToKeep(21)
+ artifactDaysToKeep(14)
daysToKeep(30)
- artifactNumToKeep(200)
+ artifactNumToKeep(100)
numToKeep(200)
}
wrappers {
@@ -843,9 +843,9 @@ parallel(
newJob.with {
logRotator {
- artifactDaysToKeep(21)
+ artifactDaysToKeep(14)
daysToKeep(30)
- artifactNumToKeep(200)
+ artifactNumToKeep(100)
numToKeep(200)
}
wrappers {