summaryrefslogtreecommitdiff
path: root/app/views/projects/runners/_specific_runners.html.haml
blob: 30cd1263a12235a77573f78c6a96bccd1036ebf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
%h3 Specific runners

.bs-callout.help-callout
  %h4 How to setup a new project specific runner

  %ol
    %li
      Install GitLab Runner software.
      Checkout the #{link_to 'GitLab Runner section', 'https://about.gitlab.com/gitlab-ci/#gitlab-runner', target: '_blank'} to install it
    %li
      Specify following URL during runner setup:
      %code #{ci_root_url(only_path: false)}
    %li
      Use the following registration token during setup:
      %code #{@project.runners_token}
    %li
      Start runner!


- if @runners.any?
  %h4.underlined-title Runners activated for this project
  %ul.bordered-list.activated-specific-runners
    = render partial: 'runner', collection: @runners, as: :runner

- if @specific_runners.any?
  %h4.underlined-title Available specific runners
  %ul.bordered-list.available-specific-runners
    = render partial: 'runner', collection: @specific_runners, as: :runner
  = paginate @specific_runners