Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
0b32c3a2
Commit
0b32c3a2
authored
Aug 27, 2019
by
Jace Bennest
Committed by
Evan Read
Aug 27, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[#2838] add cache override explanation
parent
35293821
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
doc/ci/caching/index.md
doc/ci/caching/index.md
+23
-0
No files found.
doc/ci/caching/index.md
View file @
0b32c3a2
...
...
@@ -172,6 +172,29 @@ job:
cache
:
{}
```
### Inherit global config, but override specific settings per job
You can override cache settings without overwriting the global cache by using
[
anchors
](
../yaml/README.md#anchors
)
. For example, if you want to override the
`policy`
for one job:
```
yaml
cache
:
&global_cache
key
:
${CI_COMMIT_REF_SLUG}
paths
:
-
node_modules/
-
public/
-
vendor/
policy
:
pull-push
job
:
cache
:
# inherit all global cache settings
<<
:
*global_cache
# override the policy
policy
:
pull
```
For more fine tuning, read also about the
[
`cache: policy`
](
../yaml/README.md#cachepolicy
)
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment