Reduce GitlabCI artifacts expiration delay

This commit is contained in:
Luc Didry 2018-11-05 08:18:21 +01:00
parent b2d5f3ba96
commit 038d3933d9
No known key found for this signature in database
GPG Key ID: EA868E12D0257E3C
1 changed files with 10 additions and 2 deletions

View File

@ -25,7 +25,7 @@ variables:
artifacts: artifacts:
paths: paths:
- local/ - local/
expire_in: 1 week expire_in: 3 days
dependencies: dependencies:
- carton - carton
except: except:
@ -41,6 +41,8 @@ variables:
coverage: '/Total.* (\d+\.\d+)$/' coverage: '/Total.* (\d+\.\d+)$/'
except: except:
- tags - tags
artifacts:
expire_in: 3 days
.pg_template: &pg_definition .pg_template: &pg_definition
stage: tests stage: tests
retry: 2 retry: 2
@ -54,6 +56,8 @@ variables:
coverage: '/Total .*(\d+\.\d+)$/' coverage: '/Total .*(\d+\.\d+)$/'
except: except:
- tags - tags
artifacts:
expire_in: 3 days
.mysql_template: &mysql_definition .mysql_template: &mysql_definition
stage: tests stage: tests
retry: 2 retry: 2
@ -67,6 +71,8 @@ variables:
coverage: '/Total .*(\d+\.\d+)$/' coverage: '/Total .*(\d+\.\d+)$/'
except: except:
- tags - tags
artifacts:
expire_in: 3 days
### Publish tag changelog ### Publish tag changelog
## ##
@ -91,6 +97,8 @@ podcheck:
- make podcheck - make podcheck
except: except:
- tags - tags
artifacts:
expire_in: 3 days
### Install common dependencies ### Install common dependencies
## ##
@ -100,7 +108,7 @@ carton:
artifacts: artifacts:
paths: paths:
- local/ - local/
expire_in: 1 week expire_in: 3 days
dependencies: [] dependencies: []
script: script:
- carton install --deployment --without=sqlite --without=postgresql --without=mysql - carton install --deployment --without=sqlite --without=postgresql --without=mysql