Commit fefe975e authored by Marcel Amirault's avatar Marcel Amirault Committed by Evan Read

Give issue links more descriptive text

parent dd63fda6
...@@ -73,4 +73,4 @@ A directed acyclic graph is a complicated feature, and as of the initial MVC the ...@@ -73,4 +73,4 @@ A directed acyclic graph is a complicated feature, and as of the initial MVC the
are certain use cases that you may need to work around. For more information: are certain use cases that you may need to work around. For more information:
- [`needs` requirements and limitations](../yaml/README.md#requirements-and-limitations). - [`needs` requirements and limitations](../yaml/README.md#requirements-and-limitations).
- Related epic [#1716](https://gitlab.com/groups/gitlab-org/-/epics/1716). - Related epic [tracking planned improvements](https://gitlab.com/groups/gitlab-org/-/epics/1716).
...@@ -1897,14 +1897,14 @@ This example creates three paths of execution: ...@@ -1897,14 +1897,14 @@ This example creates three paths of execution:
- For self-managed instances, the limit is: - For self-managed instances, the limit is:
- Five by default (`ci_dag_limit_needs` feature flag is enabled). - Five by default (`ci_dag_limit_needs` feature flag is enabled).
- 50 if the `ci_dag_limit_needs` feature flag is disabled. - 50 if the `ci_dag_limit_needs` feature flag is disabled.
- It is impossible for now to have `needs: []` (empty needs), - It is impossible for now to have `needs: []` (empty needs), the job always needs to
the job always needs to depend on something, unless this is the job depend on something, unless this is the job in the first stage. However, support for
in the first stage (see [issue #65504](https://gitlab.com/gitlab-org/gitlab-foss/issues/65504)). an empty needs array [is planned](https://gitlab.com/gitlab-org/gitlab/issues/30631).
- If `needs:` refers to a job that is marked as `parallel:`. - If `needs:` refers to a job that is marked as `parallel:`.
the current job will depend on all parallel jobs created. the current job will depend on all parallel jobs created.
- `needs:` is similar to `dependencies:` in that it needs to use jobs from - `needs:` is similar to `dependencies:` in that it needs to use jobs from prior stages,
prior stages, meaning it is impossible to create circular meaning it is impossible to create circular dependencies. Depending on jobs in the
dependencies or depend on jobs in the current stage (see [issue #65505](https://gitlab.com/gitlab-org/gitlab-foss/issues/65505)). current stage is not possible either, but support [is planned](https://gitlab.com/gitlab-org/gitlab/issues/30632).
- Related to the above, stages must be explicitly defined for all jobs - Related to the above, stages must be explicitly defined for all jobs
that have the keyword `needs:` or are referred to by one. that have the keyword `needs:` or are referred to by one.
......
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