2015-09-11 14:41:01 +05:30
|
|
|
- if @merge_request.has_ci?
|
|
|
|
.mr-widget-heading
|
|
|
|
- [:success, :skipped, :canceled, :failed, :running, :pending].each do |status|
|
|
|
|
.ci_widget{class: "ci-#{status}", style: "display:none"}
|
|
|
|
- if status == :success
|
|
|
|
- status = "passed"
|
|
|
|
= icon("check-circle")
|
|
|
|
- else
|
|
|
|
= icon("circle")
|
|
|
|
%span CI build #{status}
|
|
|
|
for #{@merge_request.last_commit_short_sha}.
|
|
|
|
%span.ci-coverage
|
2015-09-25 12:07:36 +05:30
|
|
|
- if ci_build_details_path(@merge_request)
|
|
|
|
= link_to "View build details", ci_build_details_path(@merge_request), :"data-no-turbolink" => "data-no-turbolink"
|
2015-09-11 14:41:01 +05:30
|
|
|
|
|
|
|
.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")
|
|
|
|
Could not connect to the CI server. Please check your settings and try again.
|
|
|
|
|
|
|
|
:coffeescript
|
|
|
|
$ ->
|
|
|
|
merge_request_widget.getCiStatus()
|