From cc6bf79d8c4e6c2bf892df383d789b67ada4f57c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 25 Mar 2021 21:49:27 +0100 Subject: [PATCH] ci: lower number of artifacts kept to 3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Desktop builds are taking up a ridiculous amount of space. Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.linux | 1 + ci/Jenkinsfile.macos | 1 + ci/Jenkinsfile.windows | 1 + 3 files changed, 3 insertions(+) diff --git a/ci/Jenkinsfile.linux b/ci/Jenkinsfile.linux index 79f7749d66..20397c8afd 100644 --- a/ci/Jenkinsfile.linux +++ b/ci/Jenkinsfile.linux @@ -18,6 +18,7 @@ pipeline { buildDiscarder(logRotator( numToKeepStr: '10', daysToKeepStr: '30', + artifactNumToKeepStr: '3', )) } diff --git a/ci/Jenkinsfile.macos b/ci/Jenkinsfile.macos index 97286b6f23..da73f38a87 100644 --- a/ci/Jenkinsfile.macos +++ b/ci/Jenkinsfile.macos @@ -13,6 +13,7 @@ pipeline { buildDiscarder(logRotator( numToKeepStr: '10', daysToKeepStr: '30', + artifactNumToKeepStr: '3', )) } diff --git a/ci/Jenkinsfile.windows b/ci/Jenkinsfile.windows index 67614347f3..289546aa57 100644 --- a/ci/Jenkinsfile.windows +++ b/ci/Jenkinsfile.windows @@ -11,6 +11,7 @@ pipeline { buildDiscarder(logRotator( numToKeepStr: '10', daysToKeepStr: '30', + artifactNumToKeepStr: '3', )) }