show.html.haml 4.6 KB
Newer Older
1
- @no_container = true
2
- page_title "#{@build.name} (##{@build.id})", "Jobs"
3
= render "projects/pipelines/head"
K
Kamil Trzcinski 已提交
4

5
%div{ class: container_class }
6 7
  .build-page.js-build-page
    #js-build-header-vue
8 9
    - if @build.stuck?
      - unless @build.any_runners_online?
F
Filipa Lacerda 已提交
10
        .bs-callout.bs-callout-warning.js-build-stuck
11 12
          %p
            - if no_runners_for_project?(@build.project)
F
Filipa Lacerda 已提交
13
              This job is stuck, because the project doesn't have any runners online assigned to it.
14
            - elsif @build.tags.any?
F
Filipa Lacerda 已提交
15
              This job is stuck, because you don't have any active runners online with any of these tags assigned to them:
16 17 18 19
              - @build.tags.each do |tag|
                %span.label.label-primary
                  = tag
            - else
F
Filipa Lacerda 已提交
20
              This job is stuck, because you don't have any active runners that can run this job.
21

22 23
            %br
            Go to
24
            = link_to project_runners_path(@build.project) do
25
              Runners page
26

27
    - if @build.starts_environment?
F
Filipa Lacerda 已提交
28
      .prepend-top-default.js-environment-container
29
        .environment-information
30
          - if @build.outdated_deployment?
A
Annabel Dunstone Gray 已提交
31 32 33
            = ci_icon_for_status('success_with_warnings')
          - else
            = ci_icon_for_status(@build.status)
34

35 36 37
          - environment = environment_for_build(@build.project, @build)
          - if @build.success? && @build.last_deployment.present?
            - if @build.last_deployment.last?
38
              This job is the most recent deployment to #{environment_link_for_build(@build.project, @build)}.
39
            - else
40
              This job is an out-of-date deployment to #{environment_link_for_build(@build.project, @build)}.
K
Kamil Trzcinski 已提交
41
              View the most recent deployment #{deployment_link(environment.last_deployment)}.
42
          - elsif @build.complete? && !@build.success?
43
            The deployment of this job to #{environment_link_for_build(@build.project, @build)} did not succeed.
44
          - else
45
            This job is creating a deployment to #{environment_link_for_build(@build.project, @build)}
46
            - if environment.try(:last_deployment)
F
Filipa Lacerda 已提交
47
              and will overwrite the #{deployment_link(environment.last_deployment, text: 'latest deployment')}
48

49 50
    - if @build.erased?
      .prepend-top-default.js-build-erased
51
        .erased.alert.alert-warning
R
Rémy Coutable 已提交
52
          - if @build.erased_by_user?
53
            Job has been erased by #{link_to(@build.erased_by_name, user_path(@build.erased_by))} #{time_ago_with_tooltip(@build.erased_at)}
R
Rémy Coutable 已提交
54
          - else
55
            Job has been erased #{time_ago_with_tooltip(@build.erased_at)}
F
Filipa Lacerda 已提交
56

57 58
    .build-trace-container.prepend-top-default
      .top-bar.js-top-bar
59 60 61 62
        .js-truncated-info.truncated-info.hidden<
          Showing last
          %span.js-truncated-info-size.truncated-info-size><
          KiB of log -
63
          %a.js-raw-link.raw-link{ href: raw_project_job_path(@project, @build) }>< Complete Raw
64

65 66
        .controllers
          - if @build.has_trace?
67
            = link_to raw_project_job_path(@project, @build),
68 69 70 71
                    title: 'Show complete raw',
                    data: { placement: 'top', container: 'body' },
                    class: 'js-raw-link-controller has-tooltip controllers-buttons' do
              = icon('file-text-o')
F
Filipa Lacerda 已提交
72

73
          - if can?(current_user, :update_build, @project) && @build.erasable?
74
            = link_to erase_project_job_path(@project, @build),
75 76 77 78 79 80 81 82 83 84 85
                      method: :post,
                      data: { confirm: 'Are you sure you want to erase this build?', placement: 'top', container: 'body' },
                      title: 'Erase job log',
                      class: 'has-tooltip js-erase-link controllers-buttons' do
              = icon('trash')
          .has-tooltip.controllers-buttons{ title: 'Scroll to top', data: { placement: 'top', container: 'body'} }
            %button.js-scroll-up.btn-scroll.btn-transparent.btn-blank{ type: 'button', disabled: true }
              = custom_icon('scroll_up')
          .has-tooltip.controllers-buttons{ title: 'Scroll to bottom', data: { placement: 'top', container: 'body'} }
            %button.js-scroll-down.btn-scroll.btn-transparent.btn-blank{ type: 'button', disabled: true }
              = custom_icon('scroll_down')
86 87 88

      %pre.build-trace#build-trace
        %code.bash.js-build-output
89
        .build-loader-animation.js-build-refresh
90

91

92
  = render "sidebar"
93

94
.js-build-options{ data: javascript_build_options }
95

96
#js-job-details-vue{ data: { endpoint: project_job_path(@project, @build, format: :json) } }
97 98 99 100

- content_for :page_specific_javascripts do
  = webpack_bundle_tag('common_vue')
  = webpack_bundle_tag('job_details')