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

30 lines
949 B
Text
Raw Normal View History

2015-09-25 12:07:36 +05:30
%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:
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
Start runner!
- if @runners.any?
%h4.underlined-title Runners activated for this project
%ul.bordered-list.activated-specific-runners
2015-10-24 18:46:33 +05:30
= render partial: 'runner', collection: @runners, as: :runner
2015-09-25 12:07:36 +05:30
- if @specific_runners.any?
%h4.underlined-title Available specific runners
%ul.bordered-list.available-specific-runners
2015-10-24 18:46:33 +05:30
= render partial: 'runner', collection: @specific_runners, as: :runner
2015-09-25 12:07:36 +05:30
= paginate @specific_runners