From 6b3f9a31c28297c21d0a3b3bcc4ead721d44526e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 24 Nov 2020 19:42:31 +0100 Subject: [PATCH] lower number of artifacts to keep in CI to 10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.linux | 4 ++-- ci/Jenkinsfile.macos | 4 ++-- ci/Jenkinsfile.windows | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ci/Jenkinsfile.linux b/ci/Jenkinsfile.linux index 829594d58a..1eb7074d0b 100644 --- a/ci/Jenkinsfile.linux +++ b/ci/Jenkinsfile.linux @@ -16,8 +16,8 @@ pipeline { timeout(time: 15, unit: 'MINUTES') /* manage how many builds we keep */ buildDiscarder(logRotator( - numToKeepStr: '20', - daysToKeepStr: '60', + numToKeepStr: '10', + daysToKeepStr: '30', )) } diff --git a/ci/Jenkinsfile.macos b/ci/Jenkinsfile.macos index 38cc2c05a6..e8715f9412 100644 --- a/ci/Jenkinsfile.macos +++ b/ci/Jenkinsfile.macos @@ -11,8 +11,8 @@ pipeline { timeout(time: 15, unit: 'MINUTES') /* manage how many builds we keep */ buildDiscarder(logRotator( - numToKeepStr: '20', - daysToKeepStr: '60', + numToKeepStr: '10', + daysToKeepStr: '30', )) } diff --git a/ci/Jenkinsfile.windows b/ci/Jenkinsfile.windows index 3c171eca08..67614347f3 100644 --- a/ci/Jenkinsfile.windows +++ b/ci/Jenkinsfile.windows @@ -9,8 +9,8 @@ pipeline { timeout(time: 25, unit: 'MINUTES') /* manage how many builds we keep */ buildDiscarder(logRotator( - numToKeepStr: '20', - daysToKeepStr: '60', + numToKeepStr: '10', + daysToKeepStr: '30', )) }