4efc1c4a68
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/4093#note_12563922 For clarification and consistency
29 lines
971 B
Text
29 lines
971 B
Text
%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 the 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 @project_runners.any?
|
|
%h4.underlined-title Runners activated for this project
|
|
%ul.bordered-list.activated-specific-runners
|
|
= render partial: 'runner', collection: @project_runners, as: :runner
|
|
|
|
- if @assignable_runners.any?
|
|
%h4.underlined-title Available specific runners
|
|
%ul.bordered-list.available-specific-runners
|
|
= render partial: 'runner', collection: @assignable_runners, as: :runner
|
|
= paginate @assignable_runners
|