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
22b28fd9
Commit
22b28fd9
authored
Jun 17, 2020
by
deveshgithub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correction in DAG Pipeline.
needs datatype is of array type.
parent
405fd65a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
doc/ci/pipelines/pipeline_architectures.md
doc/ci/pipelines/pipeline_architectures.md
+8
-8
No files found.
doc/ci/pipelines/pipeline_architectures.md
View file @
22b28fd9
...
...
@@ -133,28 +133,28 @@ build_b:
test_a
:
stage
:
test
needs
:
build_a
needs
:
[
build_a
]
script
:
-
echo "This test job will start as soon as build_a finishes."
-
echo "It will not wait for build_b, or other jobs in the build stage, to finish."
test_b
:
stage
:
test
needs
:
build_b
needs
:
[
build_b
]
script
:
-
echo "This test job will start as soon as build_b finishes."
-
echo "It will not wait for other jobs in the build stage to finish."
deploy_a
:
stage
:
deploy
needs
:
test_a
needs
:
[
test_a
]
script
:
-
echo "Since build_a and test_a run quickly, this deploy job can run much earlier."
-
echo "It does not need to wait for build_b or test_b."
deploy_b
:
stage
:
deploy
needs
:
test_b
needs
:
[
test_b
]
script
:
-
echo "Since build_b and test_b run slowly, this deploy job will run much later."
```
...
...
@@ -228,13 +228,13 @@ build_a:
test_a
:
stage
:
test
needs
:
build_a
needs
:
[
build_a
]
script
:
-
echo "This job tests something."
deploy_a
:
stage
:
deploy
needs
:
test_a
needs
:
[
test_a
]
script
:
-
echo "This job deploys something."
```
...
...
@@ -257,13 +257,13 @@ build_b:
test_b
:
stage
:
test
needs
:
build_b
needs
:
[
build_b
]
script
:
-
echo "This job tests something else."
deploy_b
:
stage
:
deploy
needs
:
test_b
needs
:
[
test_b
]
script
:
-
echo "This job deploys something else."
```
...
...
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