From 5621bd41b469e485e4cbf40f86bbff2ea069b5cf Mon Sep 17 00:00:00 2001 From: Lukas Steiner Date: Thu, 23 Mar 2023 11:14:52 +0100 Subject: [PATCH] Decrease artifacts expiration to 1 hour. --- .gitlab-ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d9ed3594..326cde23 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,7 +21,7 @@ build: artifacts: paths: - build/coverage - expire_in: 2 days + expire_in: 1 hour test: stage: test @@ -33,8 +33,7 @@ test: artifacts: paths: - build/coverage - expire_in: 2 days - + expire_in: 1 hour coverage: stage: coverage needs: @@ -44,4 +43,4 @@ coverage: artifacts: paths: - build/coverage/coverage_html - expire_in: 2 days + expire_in: 1 hour