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
Tatuya Kamada
gitlab-ce
Commits
c65e9606
Commit
c65e9606
authored
Feb 13, 2017
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement new pipeline retry service
The new service takes stages order into account.
parent
19ef4083
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
91 additions
and
11 deletions
+91
-11
app/models/ci/stage.rb
app/models/ci/stage.rb
+12
-0
app/services/ci/retry_build_service.rb
app/services/ci/retry_build_service.rb
+5
-7
app/services/ci/retry_pipeline_service.rb
app/services/ci/retry_pipeline_service.rb
+24
-3
spec/services/ci/retry_pipeline_service_spec.rb
spec/services/ci/retry_pipeline_service_spec.rb
+50
-1
No files found.
app/models/ci/stage.rb
View file @
c65e9606
...
...
@@ -19,6 +19,10 @@ module Ci
name
end
def
index
statuses
.
first
.
stage_idx
end
def
statuses_count
@statuses_count
||=
statuses
.
count
end
...
...
@@ -45,6 +49,14 @@ module Ci
status
.
to_s
==
'success'
end
def
failed?
status
.
to_s
==
'failed'
end
def
canceled?
status
.
to_s
==
'canceled'
end
def
has_warnings?
if
@warnings
.
nil?
statuses
.
latest
.
failed_but_allowed
.
any?
...
...
app/services/ci/retry_build_service.rb
View file @
c65e9606
...
...
@@ -9,11 +9,7 @@ module Ci
end
def
retry!
unless
can?
(
@user
,
:update_build
,
@build
)
raise
Gitlab
::
Access
::
AccessDeniedError
end
clone_build
.
tap
do
|
new_build
|
reprocess!
.
tap
do
|
new_build
|
new_build
.
enqueue!
MergeRequests
::
AddTodoWhenBuildFailsService
...
...
@@ -24,9 +20,11 @@ module Ci
end
end
private
def
reprocess!
unless
can?
(
@user
,
:update_build
,
@build
)
raise
Gitlab
::
Access
::
AccessDeniedError
end
def
clone_build
Ci
::
Build
.
create
(
ref:
@build
.
ref
,
tag:
@build
.
tag
,
...
...
app/services/ci/retry_pipeline_service.rb
View file @
c65e9606
...
...
@@ -12,10 +12,31 @@ module Ci
raise
Gitlab
::
Access
::
AccessDeniedError
end
@pipeline
.
stages
.
each
do
|
stage
|
stage
.
builds
.
failed_or_canceled
.
find_each
do
|
build
|
##
# Reprocess builds in subsequent stages if any
#
# TODO, refactor.
#
@pipeline
.
builds
.
where
(
'stage_idx > ?'
,
resume_stage
.
index
)
.
failed_or_canceled
.
find_each
do
|
build
|
Ci
::
RetryBuildService
.
new
(
build
,
@user
).
reprocess!
end
##
# Retry builds in the first unsuccessful stage
#
resume_stage
.
builds
.
failed_or_canceled
.
find_each
do
|
build
|
Ci
::
Build
.
retry
(
build
,
@user
)
end
end
private
def
resume_stage
@resume_stage
||=
@pipeline
.
stages
.
find
do
|
stage
|
stage
.
failed?
||
stage
.
canceled?
end
end
end
...
...
spec/services/ci/retry_pipeline_service_spec.rb
View file @
c65e9606
...
...
@@ -21,6 +21,51 @@ describe Ci::RetryPipelineService, '#execute', :services do
expect
(
build
(
'rspec 2'
)).
to
be_pending
expect
(
build
(
'rspec 3'
)).
to
be_pending
expect
(
pipeline
.
reload
).
to
be_running
end
end
context
'when there are failed or canceled builds in the first stage'
do
before
do
create_build
(
name:
'rspec 1'
,
status: :failed
,
stage_num:
0
)
create_build
(
name:
'rspec 2'
,
status: :canceled
,
stage_num:
0
)
create_build
(
name:
'rspec 3'
,
status: :skipped
,
stage_num:
1
)
create_build
(
name:
'deploy 1'
,
status: :skipped
,
stage_num:
2
)
end
it
'retries builds failed builds and marks subsequent for processing'
do
service
.
execute
expect
(
build
(
'rspec 1'
)).
to
be_pending
expect
(
build
(
'rspec 2'
)).
to
be_pending
expect
(
build
(
'rspec 3'
)).
to
be_created
expect
(
build
(
'deploy 1'
)).
to
be_created
expect
(
pipeline
.
reload
).
to
be_running
end
end
context
'when there is failed build present which was run on failure'
do
before
do
create_build
(
name:
'rspec 1'
,
status: :failed
,
stage_num:
0
)
create_build
(
name:
'rspec 2'
,
status: :canceled
,
stage_num:
0
)
create_build
(
name:
'rspec 3'
,
status: :skipped
,
stage_num:
1
)
create_build
(
name:
'report 1'
,
status: :failed
,
stage_num:
2
)
end
it
'retries builds failed builds and marks subsequent for processing'
do
service
.
execute
expect
(
build
(
'rspec 1'
)).
to
be_pending
expect
(
build
(
'rspec 2'
)).
to
be_pending
expect
(
build
(
'rspec 3'
)).
to
be_created
expect
(
build
(
'report 1'
)).
to
be_created
expect
(
pipeline
.
reload
).
to
be_running
end
it
'creates a new job for report job in this case'
do
service
.
execute
expect
(
statuses
.
where
(
name:
'report 1'
).
count
).
to
eq
2
end
end
end
...
...
@@ -32,8 +77,12 @@ describe Ci::RetryPipelineService, '#execute', :services do
end
end
def
statuses
pipeline
.
reload
.
statuses
end
def
build
(
name
)
pipeline
.
statuses
.
find_by
(
name:
name
)
statuses
.
latest
.
find_by
(
name:
name
)
end
def
create_build
(
name
:,
status
:,
stage_num
:)
...
...
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