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
a98e4081
Commit
a98e4081
authored
Oct 07, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Process MWBS in successful pipeline asynchronously
parent
a43baa05
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
1 deletion
+37
-1
app/models/ci/pipeline.rb
app/models/ci/pipeline.rb
+1
-1
app/workers/pipeline_success_worker.rb
app/workers/pipeline_success_worker.rb
+12
-0
spec/workers/pipeline_success_worker_spec.rb
spec/workers/pipeline_success_worker_spec.rb
+24
-0
No files found.
app/models/ci/pipeline.rb
View file @
a98e4081
...
...
@@ -71,7 +71,7 @@ module Ci
end
after_transition
[
:created
,
:pending
,
:running
]
=>
:success
do
|
pipeline
|
MergeRequests
::
MergeWhenBuildSucceedsService
.
new
(
pipeline
.
project
,
nil
).
trigger
(
pipeline
)
PipelineSuccessWorker
.
perform_async
(
pipeline
.
id
)
end
after_transition
do
|
pipeline
,
transition
|
...
...
app/workers/pipeline_success_worker.rb
0 → 100644
View file @
a98e4081
class
PipelineSuccessWorker
include
Sidekiq
::
Worker
sidekiq_options
queue: :default
def
perform
(
pipeline_id
)
Ci
::
Pipeline
.
find_by
(
id:
pipeline_id
).
try
do
|
pipeline
|
MergeRequests
::
MergeWhenBuildSucceedsService
.
new
(
pipeline
.
project
,
nil
)
.
trigger
(
pipeline
)
end
end
end
spec/workers/pipeline_success_worker_spec.rb
0 → 100644
View file @
a98e4081
require
'spec_helper'
describe
PipelineSuccessWorker
do
describe
'#perform'
do
context
'when pipeline exists'
do
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
status:
'success'
)
}
it
'performs "merge when pipeline succeeds"'
do
expect_any_instance_of
(
MergeRequests
::
MergeWhenBuildSucceedsService
).
to
receive
(
:trigger
)
described_class
.
new
.
perform
(
pipeline
.
id
)
end
end
context
'when pipeline does not exist'
do
it
'does not raise exception'
do
expect
{
described_class
.
new
.
perform
(
123
)
}
.
not_to
raise_error
end
end
end
end
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