summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/build/failed_allowed.rb
blob: d7570fdd3e28dfe28601191b1d2006c4dbb48ee5 (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
# frozen_string_literal: true

module Gitlab
  module Ci
    module Status
      module Build
        class FailedAllowed < Status::Extended
          def label
            "failed #{allowed_to_fail_title}"
          end

          def icon
            'status_warning'
          end

          def group
            'failed_with_warnings'
          end

          def status_tooltip
            "#{@status.status_tooltip} #{allowed_to_fail_title}"
          end

          def self.matches?(build, user)
            build.failed? && build.allow_failure?
          end

          private

          def allowed_to_fail_title
            "(allowed to fail)"
          end
        end
      end
    end
  end
end