Files
gitlabhq/spec
Douwe Maan 54729d2c28 Merge branch 'ci/cache-key' into 'master'
Added cache:key to .gitlab-ci.yml allowing to fine tune the caching

The `cache:key` allows you to define the affinity mask of caching, allowing to have single cache for all jobs, or cache per-job, or per-branch, or any other way you would need:

1. Cache per-build for all branches:

```
cache:
    key: "$CI_BUILD_NAME"
    untracked: true
```

2. Cache per-branch for all jobs:

```
cache:
    key: "$CI_BUILD_REF"
    untracked: true
```



/cc @DouweM @grzesiek @axil


See merge request !2436
2016-01-21 11:15:28 +00:00
..
2016-01-14 12:09:31 -02:00
2016-01-20 17:14:26 +01:00
2016-01-18 17:15:10 +01:00
2016-01-19 09:57:00 -05:00
2016-01-20 14:41:23 -05:00
2015-11-19 10:43:45 +01:00
2015-11-30 11:21:10 +02:00
2015-05-28 18:22:32 -04:00