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

failed_allowed.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: ca0046fb1f73048cb87461deb14a08594b9694ed (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
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