From 5c42c8019dd329000fd036668b22eb3eb99a743a Mon Sep 17 00:00:00 2001 From: Konrad Botor <kbotor@syncad.com> Date: Fri, 13 Oct 2023 10:10:03 +0200 Subject: [PATCH] Increased default artifact retention time to 24 hours - ref. #3 --- .gitlab-ci.yml | 1 - templates/base.gitlab-ci.yml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7cf0cf9..8247fc4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,7 +24,6 @@ include: artifacts: name: validation-results when: always - expire_in: 6 hours tags: - public-runner-docker diff --git a/templates/base.gitlab-ci.yml b/templates/base.gitlab-ci.yml index 7809a7e..e91c776 100644 --- a/templates/base.gitlab-ci.yml +++ b/templates/base.gitlab-ci.yml @@ -2,7 +2,7 @@ default: timeout: 1 hour artifacts: when: always - expire_in: 6 hours + expire_in: 24 hours # Necessary due to a bug. # See https://gitlab.com/gitlab-org/gitlab/-/issues/418003 for details. -- GitLab