You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by st...@apache.org on 2020/10/14 19:15:35 UTC

[phoenix] branch 4.x updated: PHOENIX-6188 Jenkins job history uses too much storage

This is an automated email from the ASF dual-hosted git repository.

stoty pushed a commit to branch 4.x
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/4.x by this push:
     new 2e56e0f  PHOENIX-6188 Jenkins job history uses too much storage
2e56e0f is described below

commit 2e56e0ff33daa1b29d6754cd02b2474083448296
Author: Istvan Toth <st...@apache.org>
AuthorDate: Wed Oct 14 21:12:14 2020 +0200

    PHOENIX-6188 Jenkins job history uses too much storage
---
 Jenkinsfile        | 2 +-
 Jenkinsfile.github | 2 +-
 Jenkinsfile.yetus  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index e8e88ef..0b537b9 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -20,7 +20,7 @@ pipeline {
     agent none
 
     options {
-        buildDiscarder(logRotator(daysToKeepStr: '30'))
+        buildDiscarder(logRotator(daysToKeepStr: '15', artifactDaysToKeepStr: '5'))
         timestamps()
     }
 
diff --git a/Jenkinsfile.github b/Jenkinsfile.github
index ad8cb1f..7a7ec7c 100644
--- a/Jenkinsfile.github
+++ b/Jenkinsfile.github
@@ -25,7 +25,7 @@ pipeline {
     options {
         // N.B. this is per-branch, which means per PR
         disableConcurrentBuilds()
-        buildDiscarder(logRotator(numToKeepStr: '15'))
+        buildDiscarder(logRotator(daysToKeepStr: '15', artifactDaysToKeepStr: '5'))
         timeout (time: 9, unit: 'HOURS')
         timestamps()
         skipDefaultCheckout()
diff --git a/Jenkinsfile.yetus b/Jenkinsfile.yetus
index b9aa15e..7d5fb10 100644
--- a/Jenkinsfile.yetus
+++ b/Jenkinsfile.yetus
@@ -22,7 +22,7 @@ pipeline {
     }
 
     options {
-        buildDiscarder(logRotator(daysToKeepStr: '7'))
+        buildDiscarder(logRotator(daysToKeepStr: '15', artifactDaysToKeepStr: '5'))
         timestamps()
     }