2016-06-03 14:09:45 -04:00
|
|
|
- @no_container = true
|
2015-10-14 06:15:03 -04:00
|
|
|
- page_title "Builds"
|
2016-05-28 13:26:08 -04:00
|
|
|
= render "projects/pipelines/head"
|
2015-10-14 06:15:03 -04:00
|
|
|
|
2016-06-30 09:01:26 -04:00
|
|
|
%div{ class: container_class }
|
2016-06-03 14:09:45 -04:00
|
|
|
.top-area
|
2016-09-12 03:52:56 -04:00
|
|
|
- build_path_proc = ->(scope) { project_builds_path(@project, scope: scope) }
|
|
|
|
= render "shared/builds/tabs", build_path_proc: build_path_proc, all_builds: @all_builds, scope: @scope
|
2016-06-03 14:09:45 -04:00
|
|
|
|
|
|
|
.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-05-16 18:06:26 -04:00
|
|
|
= link_to 'Get started with Builds', help_page_path('ci/quick_start/README'), class: 'btn btn-info'
|
2016-06-03 14:09:45 -04:00
|
|
|
|
|
|
|
= link_to ci_lint_path, class: 'btn btn-default' do
|
|
|
|
%span CI Lint
|
|
|
|
|
2016-09-29 06:31:47 -04:00
|
|
|
%div.content-list.builds-content-list
|
2016-09-07 09:27:48 -04:00
|
|
|
= render "table", builds: @builds, project: @project
|