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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
7b664858
Commit
7b664858
authored
Sep 21, 2016
by
Lin Jen-Shin
Committed by
Achilleas Pipinellis
Dec 15, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add docs for pipeline duration
parent
1e188769
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
doc/ci/pipelines.md
doc/ci/pipelines.md
+31
-0
No files found.
doc/ci/pipelines.md
View file @
7b664858
...
@@ -36,6 +36,37 @@ Clicking on a pipeline will show the builds that were run for that pipeline.
...
@@ -36,6 +36,37 @@ Clicking on a pipeline will show the builds that were run for that pipeline.
Clicking on an individual build will show you its build trace, and allow you to
Clicking on an individual build will show you its build trace, and allow you to
cancel the build, retry it, or erase the build trace.
cancel the build, retry it, or erase the build trace.
## How the pipeline duration is calculated
Total running time for a given pipeline would exclude retries and pending
(queue) time. We could reduce this problem down to finding the union of
periods.
So each job would be represented as a
`Period`
, which consists of
`Period#first`
as when the job started and
`Period#last`
as when the
job was finished. A simple example here would be:
*
A (1, 3)
*
B (2, 4)
*
C (6, 7)
Here A begins from 1, and ends to 3. B begins from 2, and ends to 4.
C begins from 6, and ends to 7. Visually it could be viewed as:
```
0 1 2 3 4 5 6 7
AAAAAAA
BBBBBBB
CCCC
```
The union of A, B, and C would be (1, 4) and (6, 7), therefore the
total running time should be:
```
(4 - 1) + (7 - 6) => 4
```
## Badges
## Badges
Build status and test coverage report badges are available. You can find their
Build status and test coverage report badges are available. You can find their
...
...
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