From 1ad9a8ee2346c97f128c1c282b93b272d1ad3c90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20M=C3=BCller?= Date: Thu, 6 Feb 2025 12:44:26 +0100 Subject: [PATCH] Increase retention time for sanitizer pipelines' artifacts Right now, with the current fixed schedule, the artifacts regularly disappear while the new pipeline has not run yet. Unless one manually saves the files, there is no way to run tests against them manually. Also, it is impossible to compare a new run against the one before. Keeping the artifacts stored for 4 weeks should fix the issue while keeping the total amount of artifacts storage manageable. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 416b86f3fc..0b71920091 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1818,7 +1818,7 @@ ltv-usan: - ivas-linux-fast artifacts: name: "$CI_JOB_NAME--main--sha-$CI_COMMIT_SHORT_SHA" - expire_in: 2 weeks + expire_in: 4 weeks when: always paths: - ep_015.g192 -- GitLab