Commit c12035f9 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Merge branch 'patch-2' into 'master'

Replace "/" with "-" in cache key documentation

See merge request gitlab-org/gitlab-ce!14034
parents c60bdf91 0f843092
...@@ -252,6 +252,8 @@ The `cache:key` variable can use any of the [predefined variables](../variables/ ...@@ -252,6 +252,8 @@ The `cache:key` variable can use any of the [predefined variables](../variables/
The default key is **default** across the project, therefore everything is The default key is **default** across the project, therefore everything is
shared between each pipelines and jobs by default, starting from GitLab 9.0. shared between each pipelines and jobs by default, starting from GitLab 9.0.
>**Note:** The `cache:key` variable cannot contain the `/` character.
--- ---
**Example configurations** **Example configurations**
...@@ -276,7 +278,7 @@ To enable per-job and per-branch caching: ...@@ -276,7 +278,7 @@ To enable per-job and per-branch caching:
```yaml ```yaml
cache: cache:
key: "$CI_JOB_NAME/$CI_COMMIT_REF_NAME" key: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
untracked: true untracked: true
``` ```
...@@ -284,7 +286,7 @@ To enable per-branch and per-stage caching: ...@@ -284,7 +286,7 @@ To enable per-branch and per-stage caching:
```yaml ```yaml
cache: cache:
key: "$CI_JOB_STAGE/$CI_COMMIT_REF_NAME" key: "$CI_JOB_STAGE-$CI_COMMIT_REF_NAME"
untracked: true untracked: true
``` ```
...@@ -293,7 +295,7 @@ If you use **Windows Batch** to run your shell scripts you need to replace ...@@ -293,7 +295,7 @@ If you use **Windows Batch** to run your shell scripts you need to replace
```yaml ```yaml
cache: cache:
key: "%CI_JOB_STAGE%/%CI_COMMIT_REF_NAME%" key: "%CI_JOB_STAGE%-%CI_COMMIT_REF_NAME%"
untracked: true untracked: true
``` ```
...@@ -302,7 +304,7 @@ If you use **Windows PowerShell** to run your shell scripts you need to replace ...@@ -302,7 +304,7 @@ If you use **Windows PowerShell** to run your shell scripts you need to replace
```yaml ```yaml
cache: cache:
key: "$env:CI_JOB_STAGE/$env:CI_COMMIT_REF_NAME" key: "$env:CI_JOB_STAGE-$env:CI_COMMIT_REF_NAME"
untracked: true untracked: true
``` ```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment