Welcome to mirror list, hosted at ThFree Co, Russian Federation.

update_build_queue_service.rb « ci « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e901016666ca1a76cf9a2d6833057c34a74106f (plain)
1
2
3
4
5
6
7
8
9
10
11
module Ci
  class UpdateBuildQueueService
    def execute(build)
      build.project.runners.each do |runner|
        if runner.can_pick?(build)
          runner.tick_runner_queue
        end
      end
    end
  end
end