Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
961e3d19
Commit
961e3d19
authored
Apr 09, 2020
by
Ray Paik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'patch-97' into 'master'
Fix typo Acylic->Acyclic See merge request gitlab-org/gitlab!29178
parents
8ceb4b83
303d2ef9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
doc/ci/pipelines/pipeline_architectures.md
doc/ci/pipelines/pipeline_architectures.md
+2
-2
No files found.
doc/ci/pipelines/pipeline_architectures.md
View file @
961e3d19
...
...
@@ -11,7 +11,7 @@ There are three main ways to structure your pipelines, each with their
own advantages. These methods can be mixed and matched if needed:
-
[
Basic
](
#basic-pipelines
)
: Good for straightforward projects where all the configuration is in one easy to find place.
-
[
Directed Acylic Graph
](
#directed-acyclic-graph-pipelines
)
: Good for large, complex projects that need efficient execution.
-
[
Directed Acy
c
lic Graph
](
#directed-acyclic-graph-pipelines
)
: Good for large, complex projects that need efficient execution.
-
[
Child/Parent Pipelines
](
#child--parent-pipelines
)
: Good for monorepos and projects with lots of independently defined components.
For more details about
...
...
@@ -92,7 +92,7 @@ deploy_b:
## Directed Acyclic Graph Pipelines
If efficiency is important to you and you want everything to run as quickly as possible,
you can use
[
Directed Acylic Graphs (DAG)
](
../directed_acyclic_graph/index.md
)
. Use the
you can use
[
Directed Acy
c
lic Graphs (DAG)
](
../directed_acyclic_graph/index.md
)
. Use the
[
`needs` keyword
](
../yaml/README.md#needs
)
to define dependency relationships between
your jobs. When GitLab knows the relationships between your jobs, it can run everything
as fast as possible, and even skips into subsequent stages when possible.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment