summaryrefslogtreecommitdiff
path: root/app/services/ci/register_build_service.rb
blob: 4ff268a6f067b15191e644d571a070ff44340acd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
          builds.joins(:project).where(projects: { builds_enabled: true, shared_runners_enabled: true })
        else
          # do run projects which are only assigned to this runner
          builds.where(project: current_runner.projects.where(builds_enabled: true))
        end

      builds = builds.order('created_at ASC')

      build = builds.find do |build|
        build.can_be_served?(current_runner)
      end

      if build
        # In case when 2 runners try to assign the same build, second runner will be declined
        # with StateMachines::InvalidTransition in run! method.
        build.with_lock do
          build.runner_id = current_runner.id
          build.save!
          build.run!
        end
      end

      build

    rescue StateMachines::InvalidTransition
      nil
    end
  end
end