BigW Consortium Gitlab

_shared_runners.html.haml 1.12 KB
Newer Older
1 2 3 4 5
%h3 Shared runners

.bs-callout.bs-callout-warning
  GitLab Runners do not offer secure isolation between projects that they do builds for. You are TRUSTING all GitLab users who can push code to project A, B or C to run shell scripts on the machine hosting runner X.
  %hr
6 7
  - if @project.shared_runners_enabled?
    = link_to toggle_shared_runners_namespace_project_runners_path(@project.namespace, @project), class: 'btn btn-warning', method: :post do
8 9
      Disable shared runners
  - else
10
    = link_to toggle_shared_runners_namespace_project_runners_path(@project.namespace, @project), class: 'btn btn-success', method: :post do
11 12 13 14
      Enable shared runners
    for this project

- if @shared_runners_count.zero?
15 16
  This GitLab server does not provide any shared runners yet.
  Please use specific runners or ask the administrator to create one.
17 18 19
- else
  %h4.underlined-title Available shared runners - #{@shared_runners_count}
  %ul.bordered-list.available-shared-runners
20
    = render partial: 'runner', collection: @shared_runners, as: :runner
21 22 23
  - if @shared_runners_count > 10
    .light
      and #{@shared_runners_count - 10} more...