From a59fa943cb530740f19e3b100ff7af776c942902 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Wed, 3 Feb 2016 13:05:35 -0500 Subject: [PATCH] Reduce number of logs kept for merge and periodic jobs Limit to max of 14 days or 10 total logs. Historical logs for these job types aren't too useful and makes Jenkins WebUI take longer to load. Let's reduce the amount of artifacts we keep for these types of jobs. Change-Id: I4c3928ffaccc9231733c8369b3bc597866af3fec Signed-off-by: Thanh Ha --- jjb-templates/merge.yaml | 4 ++-- jjb-templates/periodic.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/jjb-templates/merge.yaml b/jjb-templates/merge.yaml index c416ea866..d9ee40ff8 100644 --- a/jjb-templates/merge.yaml +++ b/jjb-templates/merge.yaml @@ -15,8 +15,8 @@ jdk: '{jdk}' logrotate: - daysToKeep: '{build-days-to-keep}' - numToKeep: '{build-num-to-keep}' + daysToKeep: '14' + numToKeep: '10' artifactDaysToKeep: '{build-artifact-days-to-keep}' artifactNumToKeep: '{build-artifact-num-to-keep}' diff --git a/jjb-templates/periodic.yaml b/jjb-templates/periodic.yaml index 8329946ad..7e55fbee7 100644 --- a/jjb-templates/periodic.yaml +++ b/jjb-templates/periodic.yaml @@ -16,8 +16,8 @@ jdk: '{jdk}' logrotate: - daysToKeep: '{build-days-to-keep}' - numToKeep: '{build-num-to-keep}' + daysToKeep: '14' + numToKeep: '10' artifactDaysToKeep: '{build-artifact-days-to-keep}' artifactNumToKeep: '{build-artifact-num-to-keep}' -- 2.36.6