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
9392e137
Commit
9392e137
authored
Mar 17, 2016
by
Achilleas Pipinellis
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'rm_duplicate_cache_ci_docs' into 'master'
Merge duplicate cache entry in CI docs See merge request !3208
parents
69e966d9
5b1db58c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
62 deletions
+48
-62
doc/ci/yaml/README.md
doc/ci/yaml/README.md
+48
-62
No files found.
doc/ci/yaml/README.md
View file @
9392e137
...
...
@@ -135,6 +135,9 @@ thus allowing to fine tune them.
### cache
>**Note:**
Introduced in GitLab Runner v0.7.0.
`cache`
is used to specify a list of files and directories which should be
cached between builds.
...
...
@@ -143,15 +146,55 @@ cached between builds.
If
`cache`
is defined outside the scope of the jobs, it means it is set
globally and all jobs will use its definition.
To cache all git untracked files and files in
`binaries`
:
Cache all files in
`binaries`
and
`.config`
:
```
yaml
rspec
:
script
:
test
cache
:
paths
:
-
binaries/
-
.config
```
Cache all Git untracked files:
```
yaml
rspec
:
script
:
test
cache
:
untracked
:
true
```
Cache all Git untracked files and files in
`binaries`
:
```
yaml
rspec
:
script
:
test
cache
:
untracked
:
true
paths
:
-
binaries/
```
Locally defined cache overwrites globally defined options. This will cache only
`binaries/`
:
```
yaml
cache
:
untracked
:
true
paths
:
-
binaries/
-
my/files
rspec
:
script
:
test
cache
:
paths
:
-
binaries/
```
The cache is provided on best effort basis, so don't expect that cache will be
always present. For implementation details please check GitLab Runner.
#### cache:key
>**Note:**
...
...
@@ -418,14 +461,14 @@ artifacts:
-
.config
```
Send all
g
it untracked files:
Send all
G
it untracked files:
```
yaml
artifacts
:
untracked
:
true
```
Send all
g
it untracked files and files in
`binaries`
:
Send all
G
it untracked files and files in
`binaries`
:
```
yaml
artifacts
:
...
...
@@ -579,63 +622,6 @@ deploy:
script
:
make deploy
```
### cache
>**Note:**
Introduced in GitLab Runner v0.7.0.
`cache`
is used to specify list of files and directories which should be cached
between builds. Below are some examples:
Cache all files in
`binaries`
and
`.config`
:
```
yaml
rspec
:
script
:
test
cache
:
paths
:
-
binaries/
-
.config
```
Cache all git untracked files:
```
yaml
rspec
:
script
:
test
cache
:
untracked
:
true
```
Cache all git untracked files and files in
`binaries`
:
```
yaml
rspec
:
script
:
test
cache
:
untracked
:
true
paths
:
-
binaries/
```
Locally defined cache overwrites globally defined options. This will cache only
`binaries/`
:
```
yaml
cache
:
paths
:
-
my/files
rspec
:
script
:
test
cache
:
paths
:
-
binaries/
```
The cache is provided on best effort basis, so don't expect that cache will be
always present. For implementation details please check GitLab Runner.
## Hidden jobs
>**Note:**
...
...
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