2015-10-24 18:46:33 +05:30
|
|
|
- page_title "Builds"
|
2015-11-26 14:37:03 +05:30
|
|
|
= render "header_title"
|
2015-10-24 18:46:33 +05:30
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
.top-area
|
2016-01-19 16:12:03 +05:30
|
|
|
%ul.nav-links
|
2015-10-24 18:46:33 +05:30
|
|
|
%li{class: ('active' if @scope.nil?)}
|
|
|
|
= link_to project_builds_path(@project) do
|
2016-01-14 18:37:52 +05:30
|
|
|
All
|
|
|
|
%span.badge.js-totalbuilds-count
|
|
|
|
= number_with_delimiter(@all_builds.count(:id))
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
%li{class: ('active' if @scope == 'running')}
|
|
|
|
= link_to project_builds_path(@project, scope: :running) do
|
2015-10-24 18:46:33 +05:30
|
|
|
Running
|
2015-12-23 02:04:40 +05:30
|
|
|
%span.badge.js-running-count
|
|
|
|
= number_with_delimiter(@all_builds.running_or_pending.count(:id))
|
2015-10-24 18:46:33 +05:30
|
|
|
|
|
|
|
%li{class: ('active' if @scope == 'finished')}
|
|
|
|
= link_to project_builds_path(@project, scope: :finished) do
|
|
|
|
Finished
|
2015-12-23 02:04:40 +05:30
|
|
|
%span.badge.js-running-count
|
|
|
|
= number_with_delimiter(@all_builds.finished.count(:id))
|
2015-10-24 18:46:33 +05:30
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
.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
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
- unless @repository.gitlab_ci_yml
|
|
|
|
= link_to 'Get started with Builds', help_page_path('ci/quick_start', 'README'), class: 'btn btn-info'
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
= link_to ci_lint_path, class: 'btn btn-default' do
|
|
|
|
= icon('wrench')
|
|
|
|
%span CI Lint
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
.row-content-block
|
|
|
|
#{(@scope || 'all').capitalize} builds from this project
|
2015-10-24 18:46:33 +05:30
|
|
|
|
|
|
|
%ul.content-list
|
|
|
|
- if @builds.blank?
|
|
|
|
%li
|
|
|
|
.nothing-here-block No builds to show
|
|
|
|
- else
|
2015-11-26 14:37:03 +05:30
|
|
|
.table-holder
|
|
|
|
%table.table.builds
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Status
|
2016-01-14 18:37:52 +05:30
|
|
|
%th Build ID
|
2015-11-26 14:37:03 +05:30
|
|
|
%th Commit
|
|
|
|
%th Ref
|
|
|
|
%th Stage
|
|
|
|
%th Name
|
2016-06-02 11:05:42 +05:30
|
|
|
%th Tags
|
2015-11-26 14:37:03 +05:30
|
|
|
%th Duration
|
|
|
|
%th Finished at
|
2016-06-02 11:05:42 +05:30
|
|
|
- if @project.build_coverage_enabled?
|
|
|
|
%th Coverage
|
2015-11-26 14:37:03 +05:30
|
|
|
%th
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
= render @builds, commit_sha: true, ref: true, stage: true, allow_retry: true, coverage: @project.build_coverage_enabled?
|
2015-11-26 14:37:03 +05:30
|
|
|
|
|
|
|
= paginate @builds, theme: 'gitlab'
|