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
Léo-Paul Géneau
gitlab-ce
Commits
ff75bd04
Commit
ff75bd04
authored
Jan 20, 2017
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix-shared-runners-queue-update' into 'master'
Fix shared runners queue update See merge request !8663
parents
d8690a05
a5ab418c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
60 additions
and
3 deletions
+60
-3
app/models/ci/runner.rb
app/models/ci/runner.rb
+5
-3
app/services/ci/update_build_queue_service.rb
app/services/ci/update_build_queue_service.rb
+8
-0
spec/services/ci/update_build_queue_service_spec.rb
spec/services/ci/update_build_queue_service_spec.rb
+47
-0
No files found.
app/models/ci/runner.rb
View file @
ff75bd04
...
...
@@ -126,9 +126,11 @@ module Ci
end
def
tick_runner_queue
new_update
=
SecureRandom
.
hex
Gitlab
::
Redis
.
with
{
|
redis
|
redis
.
set
(
runner_queue_key
,
new_update
,
ex:
RUNNER_QUEUE_EXPIRY_TIME
)
}
new_update
SecureRandom
.
hex
.
tap
do
|
new_update
|
Gitlab
::
Redis
.
with
do
|
redis
|
redis
.
set
(
runner_queue_key
,
new_update
,
ex:
RUNNER_QUEUE_EXPIRY_TIME
)
end
end
end
def
ensure_runner_queue_value
...
...
app/services/ci/update_build_queue_service.rb
View file @
ff75bd04
...
...
@@ -6,6 +6,14 @@ module Ci
runner
.
tick_runner_queue
end
end
return
unless
build
.
project
.
shared_runners_enabled?
Ci
::
Runner
.
shared
.
each
do
|
runner
|
if
runner
.
can_pick?
(
build
)
runner
.
tick_runner_queue
end
end
end
end
end
spec/services/ci/update_build_queue_service_spec.rb
0 → 100644
View file @
ff75bd04
require
'spec_helper'
describe
Ci
::
UpdateBuildQueueService
,
:services
do
let
(
:project
)
{
create
(
:project
)
}
let
(
:build
)
{
create
(
:ci_build
,
pipeline:
pipeline
)
}
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
)
}
context
'when updating specific runners'
do
let
(
:runner
)
{
create
(
:ci_runner
)
}
context
'when there are runner that can pick build'
do
before
{
build
.
project
.
runners
<<
runner
}
it
'ticks runner queue value'
do
expect
{
subject
.
execute
(
build
)
}
.
to
change
{
runner
.
ensure_runner_queue_value
}
end
end
context
'when there are no runners that can pick build'
do
it
'does not tick runner queue value'
do
expect
{
subject
.
execute
(
build
)
}
.
not_to
change
{
runner
.
ensure_runner_queue_value
}
end
end
end
context
'when updating shared runners'
do
let
(
:runner
)
{
create
(
:ci_runner
,
:shared
)
}
context
'when there are runner that can pick build'
do
it
'ticks runner queue value'
do
expect
{
subject
.
execute
(
build
)
}
.
to
change
{
runner
.
ensure_runner_queue_value
}
end
end
context
'when there are no runners that can pick build'
do
before
{
build
.
tag_list
=
[
:docker
]
}
it
'does not tick runner queue value'
do
expect
{
subject
.
execute
(
build
)
}
.
not_to
change
{
runner
.
ensure_runner_queue_value
}
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