Skip to content
Snippets Groups Projects
Commit 694ab941 authored by Annabel Dunstone's avatar Annabel Dunstone
Browse files

Rearrange and update admin builds

parent 16fda5f1
No related branches found
No related tags found
No related merge requests found
- project = build.project
%tr.build
%tr.build.commit
%td.status
= ci_status_with_icon(build.status)
 
%td.build-link
- if can?(current_user, :read_build, build.project)
= link_to namespace_project_build_url(build.project.namespace, build.project, build) do
%strong Build ##{build.id}
- else
%strong Build ##{build.id}
%td
.branch-commit
- if can?(current_user, :read_build, build.project)
= link_to namespace_project_build_url(build.project.namespace, build.project, build) do
%span ##{build.id}
- else
%span ##{build.id}
 
- if build.stuck?
%i.fa.fa-warning.text-warning
- if build.stuck?
%i.fa.fa-warning.text-warning
 
%td
- if project
= link_to project.name_with_namespace, admin_namespace_project_path(project.namespace, project)
- if build.ref
= link_to build.ref, namespace_project_commits_path(build.project.namespace, build.project, build.ref), class: "monospace branch-name"
- else
.light none
= icon("code-fork")
 
%td
= link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "monospace"
= link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "monospace commit-id"
- if build.tags.any?
.label-container
- build.tags.each do |tag|
%span.label.label-primary
= tag
- if build.try(:trigger_request)
%span.label.label-info triggered
- if build.try(:allow_failure)
%span.label.label-danger allowed to fail
 
%td
- if build.ref
= link_to build.ref, namespace_project_commits_path(build.project.namespace, build.project, build.ref)
- else
.light none
- if project
= link_to project.name_with_namespace, admin_namespace_project_path(project.namespace, project)
 
%td
- if build.try(:runner)
Loading
Loading
@@ -36,22 +46,15 @@
#{build.stage} / #{build.name}
 
%td
- if build.tags.any?
- build.tags.each do |tag|
%span.label.label-primary
= tag
- if build.try(:trigger_request)
%span.label.label-info triggered
- if build.try(:allow_failure)
%span.label.label-danger allowed to fail
%td.duration
- if build.duration
#{duration_in_words(build.finished_at, build.started_at)}
%p.duration
= icon("clock-o")
#{duration_in_words(build.finished_at, build.started_at)}
 
%td.timestamp
- if build.finished_at
%span #{time_ago_with_tooltip(build.finished_at)}
%p.finished-at
= icon("calendar")
%span #{time_ago_with_tooltip(build.finished_at)}
 
- if defined?(coverage) && coverage
%td.coverage
Loading
Loading
Loading
Loading
@@ -27,7 +27,7 @@
.row-content-block.second-block
#{(@scope || 'all').capitalize} builds
 
%ul.content-list
%ul.content-list.builds-content-list
- if @builds.blank?
%li
.nothing-here-block No builds to show
Loading
Loading
@@ -37,15 +37,11 @@
%thead
%tr
%th Status
%th Build ID
%th Project
%th Commit
%th Ref
%th Project
%th Runner
%th Name
%th Tags
%th Duration
%th Finished at
%th
%th
 
- @builds.each do |build|
Loading
Loading
Loading
Loading
@@ -6,7 +6,7 @@
= ci_status_with_icon(build.status)
 
%td
%div.branch-commit
.branch-commit
- if can?(current_user, :read_build, build)
= link_to namespace_project_build_url(build.project.namespace, build.project, build) do
%span ##{build.id}
Loading
Loading
@@ -28,17 +28,17 @@
- if defined?(commit_sha) && commit_sha
= link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "commit-id monospace"
 
.label-container
- if build.tags.any?
- if build.tags.any?
.label-container
- build.tags.each do |tag|
%span.label.label-primary
= tag
- if build.try(:trigger_request)
%span.label.label-info triggered
- if build.try(:allow_failure)
%span.label.label-danger allowed to fail
- if defined?(retried) && retried
%span.label.label-warning retried
- if build.try(:trigger_request)
%span.label.label-info triggered
- if build.try(:allow_failure)
%span.label.label-danger allowed to fail
- if defined?(retried) && retried
%span.label.label-warning retried
 
 
- if defined?(runner) && runner
Loading
Loading
Loading
Loading
@@ -6,7 +6,7 @@
 
 
%td
%div.branch-commit
.branch-commit
= link_to namespace_project_pipeline_path(@project.namespace, @project, pipeline.id) do
%span ##{pipeline.id}
- if pipeline.ref
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment