25 lines
1.1 KiB
Text
25 lines
1.1 KiB
Text
%h3
|
|
= _('Shared Runners')
|
|
|
|
.bs-callout.shared-runners-description
|
|
- if Gitlab::CurrentSettings.shared_runners_text.present?
|
|
= markdown_field(Gitlab::CurrentSettings.current_application_settings, :shared_runners_text)
|
|
- else
|
|
GitLab Shared Runners execute code of different projects on the same Runner
|
|
unless you configure GitLab Runner Autoscale with MaxBuilds 1 (which it is
|
|
on GitLab.com).
|
|
%hr
|
|
- if @project.shared_runners_enabled?
|
|
= link_to toggle_shared_runners_project_runners_path(@project), class: 'btn btn-close', method: :post do
|
|
Disable shared Runners
|
|
- else
|
|
= link_to toggle_shared_runners_project_runners_path(@project), class: 'btn btn-success', method: :post do
|
|
Enable shared Runners
|
|
for this project
|
|
|
|
- if @shared_runners_count.zero?
|
|
= _('This GitLab instance does not provide any shared Runners yet. Instance administrators can register shared Runners in the admin area.')
|
|
- else
|
|
%h4.underlined-title Available shared Runners : #{@shared_runners_count}
|
|
%ul.bordered-list.available-shared-runners
|
|
= render partial: 'projects/runners/runner', collection: @shared_runners, as: :runner
|