diff options
author | Jason Lenny <jason@gitlab.com> | 2019-08-14 13:00:23 +0000 |
---|---|---|
committer | Jason Lenny <jason@gitlab.com> | 2019-08-14 13:00:23 +0000 |
commit | 615976f1b65b16367986f64981cba9b95ee6d46e (patch) | |
tree | c79c762d71c88bfeec2eb8526867dde995442401 | |
parent | df182830d3836f6babf48e902ac7f6220e05dbf2 (diff) | |
download | gitlab-ce-615976f1b65b16367986f64981cba9b95ee6d46e.tar.gz |
Add note about feature flags
-rw-r--r-- | doc/ci/yaml/README.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md index 6c34eca7c84..ae04a39a227 100644 --- a/doc/ci/yaml/README.md +++ b/doc/ci/yaml/README.md @@ -1739,6 +1739,9 @@ This example creates three paths of execution: dependencies or depend on jobs in the current stage (see [gitlab-ce#65505](https://gitlab.com/gitlab-org/gitlab-ce/issues/65505)). 1. Related to the above, stages must be explicitly defined for all jobs that have the keyword `needs:` or are referred to by one. +1. For self-managed users, the feature must be turned on using the `ci_dag_support` + feature flag. The `ci_dag_limit_needs` option, if set, will limit the number of + jobs that a single job can need to `5`. If unset, the limit is `50`. ### `coverage` |