From f69ca55712c72044c834b0f94c67d8e7700a1234 Mon Sep 17 00:00:00 2001 From: radupopa2010 <radupopa2010@yahoo.com> Date: Wed, 2 Feb 2022 13:56:41 +0100 Subject: [PATCH] feat(cicd): expire artifacts after 7 days (#4833) We received several alerts about disk space in gitlab server. Even if we have 1TiB allocated, disk space is consumed very fast. We need to address this problem by expiring artifacts after 7 days. --- polkadot/.gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/.gitlab-ci.yml b/polkadot/.gitlab-ci.yml index 27a83ef8dfd..ff60e5bdcc0 100644 --- a/polkadot/.gitlab-ci.yml +++ b/polkadot/.gitlab-ci.yml @@ -40,7 +40,7 @@ default: artifacts: name: "${CI_JOB_NAME}_${CI_COMMIT_REF_NAME}" when: on_success - expire_in: 28 days + expire_in: 7 days paths: - ./artifacts/ -- GitLab