debian-mirror-gitlab/app/views/projects/runners/_specific_runners.html.haml

30 lines
1 KiB
Text
Raw Normal View History

2016-11-03 12:29:30 +05:30
%h3 Specific Runners
2015-09-25 12:07:36 +05:30
.bs-callout.help-callout
2016-11-03 12:29:30 +05:30
%h4 How to setup a specific Runner for a new project
2015-09-25 12:07:36 +05:30
%ol
%li
2016-11-03 12:29:30 +05:30
Install a Runner compatible with GitLab CI
(checkout the #{link_to 'GitLab Runner section', 'https://about.gitlab.com/gitlab-ci/#gitlab-runner', target: '_blank'} for information on how to install it).
2015-09-25 12:07:36 +05:30
%li
2016-11-03 12:29:30 +05:30
Specify the following URL during the Runner setup:
2015-09-25 12:07:36 +05:30
%code #{ci_root_url(only_path: false)}
%li
Use the following registration token during setup:
2015-12-23 02:04:40 +05:30
%code #{@project.runners_token}
2015-09-25 12:07:36 +05:30
%li
2016-11-03 12:29:30 +05:30
Start the Runner!
2015-09-25 12:07:36 +05:30
2016-06-22 15:30:34 +05:30
- if @project_runners.any?
2015-09-25 12:07:36 +05:30
%h4.underlined-title Runners activated for this project
%ul.bordered-list.activated-specific-runners
2016-06-22 15:30:34 +05:30
= render partial: 'runner', collection: @project_runners, as: :runner
2015-09-25 12:07:36 +05:30
2016-06-22 15:30:34 +05:30
- if @assignable_runners.any?
2015-09-25 12:07:36 +05:30
%h4.underlined-title Available specific runners
%ul.bordered-list.available-specific-runners
2016-06-22 15:30:34 +05:30
= render partial: 'runner', collection: @assignable_runners, as: :runner
2016-11-03 12:29:30 +05:30
= paginate @assignable_runners, theme: "gitlab"