_heading.html.haml 2.1 KB
Newer Older
1
- if @pipeline
2
  .mr-widget-heading
P
Phil Hughes 已提交
3
    - %w[success skipped canceled failed running pending].each do |status|
4
      .ci_widget{ class: "ci-#{status}", style: ("display:none" unless @pipeline.status == status) }
P
Phil Hughes 已提交
5
        = ci_icon_for_status(status)
6
        %span
P
Phil Hughes 已提交
7 8 9 10 11
          CI build
          = ci_label_for_status(status)
        for
        - commit = @merge_request.last_commit
        = succeed "." do
12
          = link_to @pipeline.short_sha, namespace_project_commit_path(@merge_request.source_project.namespace, @merge_request.source_project, @pipeline.sha), class: "monospace"
P
Phil Hughes 已提交
13 14 15 16 17 18 19
        %span.ci-coverage
        = link_to "View details", builds_namespace_project_merge_request_path(@project.namespace, @project, @merge_request), class: "js-show-tab", data: {action: 'builds'}

- elsif @merge_request.has_ci?
  - # Compatibility with old CI integrations (ex jenkins) when you request status from CI server via AJAX
  - # Remove in later versions when services like Jenkins will set CI status via Commit status API
  .mr-widget-heading
D
Douwe Maan 已提交
20
    - %w[success skipped canceled failed running pending].each do |status|
P
Phil Hughes 已提交
21
      .ci_widget{class: "ci-#{status}", style: "display:none"}
D
Douwe Maan 已提交
22 23 24 25
        = ci_icon_for_status(status)
        %span
          CI build
          = ci_label_for_status(status)
D
Douwe Maan 已提交
26 27 28 29
        for
        - commit = @merge_request.last_commit
        = succeed "." do
          = link_to commit.short_id, namespace_project_commit_path(@merge_request.source_project.namespace, @merge_request.source_project, commit), class: "monospace"
30
        %span.ci-coverage
P
Phil Hughes 已提交
31
        - if details_path = ci_build_details_path(@merge_request)
D
Douwe Maan 已提交
32
          = link_to "View details", details_path, :"data-no-turbolink" => "data-no-turbolink"
33

P
Phil Hughes 已提交
34 35 36 37 38 39 40 41 42 43
    .ci_widget
      = icon("spinner spin")
      Checking CI status for #{@merge_request.last_commit_short_sha}…

    .ci_widget.ci-not_found{style: "display:none"}
      = icon("times-circle")
      Could not find CI status for #{@merge_request.last_commit_short_sha}.

    .ci_widget.ci-error{style: "display:none"}
      = icon("times-circle")
44
      Could not connect to the CI server. Please check your settings and try again.