From bca5e0937a0981f7f0b159e673dd8df8d6281ba9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org>
Date: Wed, 13 May 2020 20:43:36 +0200
Subject: [PATCH] CI: increase expiration delay for intermediate objects

Under heavy load, it can happen that no runner is available during one hour.
---
 .gitlab-ci.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f9009510..8f132f29 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -26,7 +26,7 @@ build_linux_32:
   artifacts:
     paths:
       - $CI_COMMIT_SHORT_SHA/linux/32/*
-    expire_in: 1 hour
+    expire_in: 1 day
 
 build_linux_64:
   stage: build
@@ -43,7 +43,7 @@ build_linux_64:
   artifacts:
     paths:
       - $CI_COMMIT_SHORT_SHA/linux/64/*
-    expire_in: 1 hour
+    expire_in: 1 day
 
 build_windows_32:
   stage: build
@@ -64,7 +64,7 @@ build_windows_32:
   artifacts:
     paths:
       - $CI_COMMIT_SHORT_SHA/windows/32/*
-    expire_in: 1 hour
+    expire_in: 1 day
 
 build_windows_64:
   stage: build
@@ -85,7 +85,7 @@ build_windows_64:
   artifacts:
     paths:
       - $CI_COMMIT_SHORT_SHA/windows/64/*
-    expire_in: 1 hour
+    expire_in: 1 day
 
 build_macOS:
   stage: build
@@ -104,7 +104,7 @@ build_macOS:
   artifacts:
     paths:
       - $CI_COMMIT_SHORT_SHA/macOS/64/*
-    expire_in: 1 hour
+    expire_in: 1 day
 
 aggregate_builds:
   stage: prepare
-- 
GitLab