diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2020-11-06 13:32:51 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2020-11-06 14:56:17 +1000 |
commit | c1c5d62986ce29aefa8c2626d5d7311b255d9e34 (patch) | |
tree | 23ae27ea93ea6de3d823f30dd68e37d95dd35668 /.gitlab-ci.yml | |
parent | 05c141cb21197a9e06df20365a5d43fa6d915ae1 (diff) |
gitlab CI: bump the artifacts to 2 weeks
We have jobs that rely on those artifacts and 20 min is too short. Where a
dependent job fails, the artifact is often gone before we can hit retry. So
let's bump this to something definitely long enough.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6be670c7..ebfc4989 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -105,7 +105,7 @@ make_install: - tree $INSTDIR artifacts: name: installed files - expire_in: 20 min + expire_in: 2 weeks paths: - $INSTDIR/ @@ -123,7 +123,7 @@ make_distcheck: MAKE_EXTRA_COMMAND: "VERSION=master distcheck" artifacts: name: tarball - expire_in: 20 min + expire_in: 2 weeks paths: - $BUILDDIR/xkeyboard-config-master.tar.bz2 @@ -136,7 +136,7 @@ meson_build: - tree $INSTDIR artifacts: name: installed files - expire_in: 20 min + expire_in: 2 weeks paths: - $INSTDIR/ |