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

builds_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa3a9a055a05aab230b45fc19c6a04a5862f9125 (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
module BuildsHelper
  def build_summary(build, skip: false)
    if build.has_trace?
      if skip
        link_to "View job trace", pipeline_job_url(build.pipeline, build)
      else
        build.trace.html(last_lines: 10).html_safe
      end
    else
      "No job trace"
    end
  end

  def sidebar_build_class(build, current_build)
    build_class = ''
    build_class += ' active' if build.id === current_build.id
    build_class += ' retried' if build.retried?
    build_class
  end

  def javascript_build_options
    {
      page_url: project_job_url(@project, @build),
      build_url: project_job_url(@project, @build, :json),
      build_status: @build.status,
      build_stage: @build.stage,
      log_state: ''
    }
  end

  def build_failed_issue_options
    {
      title: "Job Failed ##{@build.id}",
      description: project_job_url(@project, @build)
    }
  end
end