summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/build/failed_allowed.rb
blob: 93c7475f47d608cc138fe1e615d4df8bef6a0be6 (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
module Gitlab
  module Ci
    module Status
      module Build
        class FailedAllowed < SimpleDelegator
          include Status::Extended

          def label
            'failed (allowed to fail)'
          end

          def icon
            'icon_status_warning'
          end

          def favicon
            'build_status_warning'
          end

          def group
            'failed_with_warnings'
          end

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