Skip to content
Snippets Groups Projects

Document restrictions on cache and artifact paths

Merged Nick Thomas requested to merge (removed):clarify-cache-and-artifact-paths into master
1 file
+ 4
3
Compare changes
  • Side-by-side
  • Inline
+ 4
3
@@ -159,7 +159,8 @@ Variables can be also defined on [job level](#job-variables).
@@ -159,7 +159,8 @@ Variables can be also defined on [job level](#job-variables).
> Introduced in GitLab Runner v0.7.0.
> Introduced in GitLab Runner v0.7.0.
`cache` is used to specify a list of files and directories which should be
`cache` is used to specify a list of files and directories which should be
cached between builds.
cached between builds. You can only use paths that are within the project
 
workspace.
**By default the caching is enabled per-job and per-branch.**
**By default the caching is enabled per-job and per-branch.**
@@ -606,8 +607,8 @@ You can see a simple example at https://gitlab.com/gitlab-examples/review-apps-n
@@ -606,8 +607,8 @@ You can see a simple example at https://gitlab.com/gitlab-examples/review-apps-n
> - Build artifacts are only collected for successful builds by default.
> - Build artifacts are only collected for successful builds by default.
`artifacts` is used to specify a list of files and directories which should be
`artifacts` is used to specify a list of files and directories which should be
attached to the build after success. To pass artifacts between different builds,
attached to the build after success. You can only use paths that are within the
see [dependencies](#dependencies).
project workspace. To pass artifacts between different builds, see [dependencies](#dependencies).
Below are some examples.
Below are some examples.
Loading