diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-01-07 11:53:44 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-01-12 21:30:49 -0500 |
commit | f732dbec2159e314619d372aa9cc34d6ab8fadf5 (patch) | |
tree | f0c6442b743aa1d0ef199e2a8c6907ab0cab417b /.gitlab-ci.yml | |
parent | 0b5ddc7f2c10ee84631dd6cb5f6368afbc389449 (diff) | |
download | haskell-f732dbec2159e314619d372aa9cc34d6ab8fadf5.tar.gz |
gitlab-ci: Retain bindists used by head.hackage for longer
Previously we would keep them for two weeks. However, on the stable
branches two weeks can easily elapse with no pushes.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0aa1a3e630..dcd05397a7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -758,7 +758,9 @@ validate-x86_64-linux-fedora27: key: linux-x86_64-fedora27 artifacts: when: always - expire_in: 2 week + # These are used for head.hackage jobs therefore we keep them around for + # longer. + expire_in: 8 week ############################################################ # Validation via Pipelines (Windows) |