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

waiting_for_resource.rb « build « status « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 008e6a17bddb97d274fad856fdcbebf9f5118848 (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
# frozen_string_literal: true

module Gitlab
  module Ci
    module Status
      module Build
        class WaitingForResource < Status::Extended
          ##
          # TODO: image is shared with 'pending'
          # until we get a dedicated one
          #
          def illustration
            {
              image: 'illustrations/pending_job_empty.svg',
              size: 'svg-430',
              title: _('This job is waiting for resource: ') + subject.resource_group.key
            }
          end

          def self.matches?(build, _)
            build.waiting_for_resource?
          end
        end
      end
    end
  end
end