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

runners_helper.rb « ci « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 782208ddfe470388ceed6d7ac413345c0cfb264f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module Ci
  module RunnersHelper
    def runner_status_icon(runner)
      unless runner.contacted_at
        return content_tag :i, nil,
          class: "fa-warning-sign",
          title: "New runner. Has not connected yet"
      end

      status =
        if runner.active?
          runner.contacted_at > 3.hour.ago ? :online : :offline
        else
          :paused
        end

      content_tag :i, nil,
        class: "fa-circle runner-status-#{status}",
        title: "Runner is #{status}, last contact was #{time_ago_in_words(runner.contacted_at)} ago"
    end
  end
end