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
2461e109
Commit
2461e109
authored
Oct 12, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Execute pipeline hooks asynchronously
parent
7c07c07d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
1 deletion
+38
-1
app/models/ci/pipeline.rb
app/models/ci/pipeline.rb
+6
-1
app/workers/pipeline_hooks_worker.rb
app/workers/pipeline_hooks_worker.rb
+9
-0
spec/workers/pipeline_hooks_worker_spec.rb
spec/workers/pipeline_hooks_worker_spec.rb
+23
-0
No files found.
app/models/ci/pipeline.rb
View file @
2461e109
...
...
@@ -3,6 +3,7 @@ module Ci
extend
Ci
::
Model
include
HasStatus
include
Importable
include
AfterCommitQueue
self
.
table_name
=
'ci_commits'
...
...
@@ -71,7 +72,11 @@ module Ci
end
after_transition
do
|
pipeline
,
transition
|
pipeline
.
execute_hooks
unless
transition
.
loopback?
next
if
transition
.
loopback?
pipeline
.
run_after_commit
do
PipelineHooksWorker
.
perform_async
(
id
)
end
end
end
...
...
app/workers/pipeline_hooks_worker.rb
0 → 100644
View file @
2461e109
class
PipelineHooksWorker
include
Sidekiq
::
Worker
sidekiq_options
queue: :default
def
perform
(
pipeline_id
)
Ci
::
Pipeline
.
find_by
(
id:
pipeline_id
)
.
try
(
:execute_hooks
)
end
end
spec/workers/pipeline_hooks_worker_spec.rb
0 → 100644
View file @
2461e109
require
'spec_helper'
describe
PipelineHooksWorker
do
describe
'#perform'
do
context
'when pipeline exists'
do
let
(
:pipeline
)
{
create
(
:ci_pipeline
)
}
it
'executes hooks for the pipeline'
do
expect_any_instance_of
(
Ci
::
Pipeline
)
.
to
receive
(
:execute_hooks
)
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