From 8914a79284406c793fe187137a84a1de9f9a764d Mon Sep 17 00:00:00 2001 From: Patryk Osmaczko Date: Tue, 20 Aug 2024 09:03:10 +0200 Subject: [PATCH] chore(ci)_: adjust nightly tests build retention to 14 runs Increased build and artifact retention, as more context is usually needed when analyzing flakiness thorugh nightly tests. --- _assets/ci/Jenkinsfile.tests | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_assets/ci/Jenkinsfile.tests b/_assets/ci/Jenkinsfile.tests index 4e39510f9..26608cfbb 100644 --- a/_assets/ci/Jenkinsfile.tests +++ b/_assets/ci/Jenkinsfile.tests @@ -45,9 +45,9 @@ pipeline { disableConcurrentBuilds() /* manage how many builds we keep */ buildDiscarder(logRotator( - numToKeepStr: '5', + numToKeepStr: isTestNightlyJob() ? '14' : '5', daysToKeepStr: '30', - artifactNumToKeepStr: '1', + artifactNumToKeepStr: isTestNightlyJob() ? '14' : '1', )) }