Add note about nested variables for GIT_CLONE_PATH

The variable $GIT_CLONE_PATH does not support nested variables, it will
only expand the variables once, not more.

reference https://gitlab.com/gitlab-org/gitlab-runner/issues/4319
This commit is contained in:
Steve Azzopardi 2019-06-18 03:45:21 +00:00 committed by Evan Read
parent a35195f4b8
commit 5097cf4f78
1 changed files with 18 additions and 0 deletions

View File

@ -2620,6 +2620,24 @@ test:
- pwd
```
### Nested paths
The value of `GIT_CLONE_PATH` is expanded once and nesting variables
within it is not supported.
For example, you define both the variables below in your
`.gitlab-ci.yml` file:
```yml
variables:
GOPATH: $CI_BUILDS_DIR/go
GIT_CLONE_PATH: $GOPATH/src/namespace/project
```
The value of `GIT_CLONE_PATH` is expanded once into
`$CI_BUILDS_DIR/go/src/namespace/project`, and results in failure
because `$CI_BUILDS_DIR` is not expanded.
## Special YAML features
It's possible to use special YAML features like anchors (`&`), aliases (`*`)