debian-mirror-gitlab/app/services/ci/register_build_service.rb

40 lines
1.1 KiB
Ruby
Raw Normal View History

2015-09-25 12:07:36 +05:30
module Ci
# This class responsible for assigning
# proper pending build to runner on runner API request
class RegisterBuildService
def execute(current_runner)
builds = Ci::Build.pending.unstarted
builds =
if current_runner.shared?
# don't run projects which have not enables shared runners
2015-12-23 02:04:40 +05:30
builds.joins(:project).where(projects: { builds_enabled: true, shared_runners_enabled: true })
2015-09-25 12:07:36 +05:30
else
# do run projects which are only assigned to this runner
2015-12-23 02:04:40 +05:30
builds.where(project: current_runner.projects.where(builds_enabled: true))
2015-09-25 12:07:36 +05:30
end
builds = builds.order('created_at ASC')
build = builds.find do |build|
2015-10-24 18:46:33 +05:30
build.can_be_served?(current_runner)
2015-09-25 12:07:36 +05:30
end
2015-10-24 18:46:33 +05:30
2015-09-25 12:07:36 +05:30
if build
# In case when 2 runners try to assign the same build, second runner will be declined
2015-12-23 02:04:40 +05:30
# with StateMachines::InvalidTransition in run! method.
2015-09-25 12:07:36 +05:30
build.with_lock do
build.runner_id = current_runner.id
build.save!
build.run!
end
end
build
2015-12-23 02:04:40 +05:30
rescue StateMachines::InvalidTransition
2015-09-25 12:07:36 +05:30
nil
end
end
end