Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
c1b8c65f
Commit
c1b8c65f
authored
Apr 04, 2018
by
Dylan Griffith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow setting up group runners in group CI/CD settings (#10244)
parent
3f91c916
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
73 additions
and
2 deletions
+73
-2
app/views/groups/runners/_group_runners.html.haml
app/views/groups/runners/_group_runners.html.haml
+19
-0
app/views/groups/runners/_index.html.haml
app/views/groups/runners/_index.html.haml
+23
-0
app/views/groups/runners/_runner.html.haml
app/views/groups/runners/_runner.html.haml
+18
-0
app/views/groups/settings/ci_cd/show.html.haml
app/views/groups/settings/ci_cd/show.html.haml
+11
-0
app/views/projects/runners/_group_runners.html.haml
app/views/projects/runners/_group_runners.html.haml
+2
-2
No files found.
app/views/groups/runners/_group_runners.html.haml
0 → 100644
View file @
c1b8c65f
%h3
Group Runners
.bs-callout.bs-callout-warning
GitLab Group Runners can execute code for all the projects in this group.
They can be managed using the
#{
link_to
'Runners API'
,
help_page_path
(
'api/runners.md'
)
}
.
-
if
@group
.
runners
.
empty?
This group does not provide any group Runners yet.
-
if
can?
(
current_user
,
:admin_pipeline
,
@group
)
=
render
partial:
'ci/runner/how_to_setup_runner'
,
locals:
{
registration_token:
@group
.
runners_token
,
type:
'group'
}
-
else
Ask your group master to setup a group Runner.
-
else
%h4
.underlined-title
Available group Runners :
#{
@group
.
runners
.
count
}
%ul
.bordered-list
=
render
partial:
'groups/runners/runner'
,
collection:
@group
.
runners
,
as: :runner
app/views/groups/runners/_index.html.haml
0 → 100644
View file @
c1b8c65f
.light.prepend-top-default
%p
A 'Runner' is a process which runs a job.
You can setup as many Runners as you need.
%br
Runners can be placed on separate users, servers, and even on your local machine.
%p
Each Runner can be in one of the following states:
%div
%ul
%li
%span
.label.label-success
active
\- Runner is active and can process any new jobs
%li
%span
.label.label-danger
paused
\- Runner is paused and will not receive any new jobs
%hr
%p
.lead
To start serving your jobs you can add Runners to your group
.row
.col-sm-6
=
render
'groups/runners/group_runners'
app/views/groups/runners/_runner.html.haml
0 → 100644
View file @
c1b8c65f
%li
.runner
{
id:
dom_id
(
runner
)
}
%h4
=
runner_status_icon
(
runner
)
%span
.commit-sha
=
runner
.
short_sha
.pull-right
%small
.light
\##{runner.id}
-
if
runner
.
description
.
present?
%p
.runner-description
=
runner
.
description
-
if
runner
.
tag_list
.
present?
%p
-
runner
.
tag_list
.
sort
.
each
do
|
tag
|
%span
.label.label-primary
=
tag
app/views/groups/settings/ci_cd/show.html.haml
View file @
c1b8c65f
...
...
@@ -14,3 +14,14 @@
=
render
"ci/variables/content"
.settings-content
=
render
'ci/variables/index'
,
save_endpoint:
group_variables_path
%section
.settings.no-animate
{
class:
(
'expanded'
if
expanded
)
}
.settings-header
%h4
Runners settings
%button
.btn.js-settings-toggle
=
expanded
?
'Collapse'
:
'Expand'
%p
Register and see your runners for this group.
.settings-content
=
render
'groups/runners/index'
app/views/projects/runners/_group_runners.html.haml
View file @
c1b8c65f
...
...
@@ -21,8 +21,8 @@
This group does not provide any group Runners yet.
-
if
can?
(
current_user
,
:admin_pipeline
,
@project
.
group
)
=
render
partial:
'ci/runner/how_to_setup_runner'
,
locals:
{
registration_token:
@project
.
group
.
runners_token
,
type:
'group'
}
You can register group runners in the
=
link_to
'Group CI/CD settings'
,
group_settings_ci_cd_path
(
@project
.
group
)
-
else
Ask your group master to setup a group Runner.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment