From c6e957305b21eb2fae312b3aa4d4d294e86d15e9 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 23 Nov 2021 07:36:12 -0500 Subject: [PATCH] gitlab-ci: keep artifacts for a day Now that there are `ghostflow` tags on the jobs, there is not enough hardware to get through all of the relevant projects within an hour. --- .gitlab/artifacts.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab/artifacts.yml b/.gitlab/artifacts.yml index dc037c0..484e087 100644 --- a/.gitlab/artifacts.yml +++ b/.gitlab/artifacts.yml @@ -1,6 +1,6 @@ .cargo_fetch_artifacts: artifacts: - expire_in: 60m + expire_in: 24h paths: - vendor - .cargo @@ -8,7 +8,7 @@ .cargo_build_artifacts: artifacts: - expire_in: 60m + expire_in: 24h paths: - vendor - .cargo -- GitLab