2016-06-16 23:09:34 +05:30
|
|
|
- @no_container = true
|
2015-10-24 18:46:33 +05:30
|
|
|
- page_title "Builds"
|
2016-06-16 23:09:34 +05:30
|
|
|
= render "projects/pipelines/head"
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
%div{ class: container_class }
|
2016-06-16 23:09:34 +05:30
|
|
|
.top-area
|
|
|
|
%ul.nav-links
|
|
|
|
%li{class: ('active' if @scope.nil?)}
|
|
|
|
= link_to project_builds_path(@project) do
|
|
|
|
All
|
|
|
|
%span.badge.js-totalbuilds-count
|
|
|
|
= number_with_delimiter(@all_builds.count(:id))
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
%li{class: ('active' if @scope == 'pending')}
|
|
|
|
= link_to project_builds_path(@project, scope: :pending) do
|
|
|
|
Pending
|
|
|
|
%span.badge
|
|
|
|
= number_with_delimiter(@all_builds.pending.count(:id))
|
2016-06-16 23:09:34 +05:30
|
|
|
|
|
|
|
%li{class: ('active' if @scope == 'running')}
|
|
|
|
= link_to project_builds_path(@project, scope: :running) do
|
|
|
|
Running
|
2016-08-24 12:49:21 +05:30
|
|
|
%span.badge
|
|
|
|
= number_with_delimiter(@all_builds.running.count(:id))
|
2016-06-16 23:09:34 +05:30
|
|
|
|
|
|
|
%li{class: ('active' if @scope == 'finished')}
|
|
|
|
= link_to project_builds_path(@project, scope: :finished) do
|
|
|
|
Finished
|
2016-08-24 12:49:21 +05:30
|
|
|
%span.badge
|
2016-06-16 23:09:34 +05:30
|
|
|
= number_with_delimiter(@all_builds.finished.count(:id))
|
|
|
|
|
|
|
|
.nav-controls
|
|
|
|
- if can?(current_user, :update_build, @project)
|
|
|
|
- if @all_builds.running_or_pending.any?
|
|
|
|
= link_to 'Cancel running', cancel_all_namespace_project_builds_path(@project.namespace, @project),
|
|
|
|
data: { confirm: 'Are you sure?' }, class: 'btn btn-danger', method: :post
|
|
|
|
|
|
|
|
- unless @repository.gitlab_ci_yml
|
2016-08-24 12:49:21 +05:30
|
|
|
= link_to 'Get started with Builds', help_page_path('ci/quick_start/README'), class: 'btn btn-info'
|
2016-06-16 23:09:34 +05:30
|
|
|
|
|
|
|
= link_to ci_lint_path, class: 'btn btn-default' do
|
|
|
|
%span CI Lint
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
%ul.content-list.builds-content-list
|
2016-06-16 23:09:34 +05:30
|
|
|
- if @builds.blank?
|
|
|
|
%li
|
|
|
|
.nothing-here-block No builds to show
|
|
|
|
- else
|
|
|
|
.table-holder
|
|
|
|
%table.table.builds
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Status
|
|
|
|
%th Commit
|
|
|
|
%th Stage
|
|
|
|
%th Name
|
2016-08-24 12:49:21 +05:30
|
|
|
%th
|
2016-06-16 23:09:34 +05:30
|
|
|
- if @project.build_coverage_enabled?
|
|
|
|
%th Coverage
|
|
|
|
%th
|
|
|
|
|
|
|
|
= render @builds, commit_sha: true, ref: true, stage: true, allow_retry: true, coverage: @project.build_coverage_enabled?
|
|
|
|
|
|
|
|
= paginate @builds, theme: 'gitlab'
|