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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
159aed1c
Commit
159aed1c
authored
8 years ago
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extract global CI config entry configuration setup
parent
8baee987
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
9 deletions
+12
-9
lib/gitlab/ci/config/node/global.rb
lib/gitlab/ci/config/node/global.rb
+12
-9
No files found.
lib/gitlab/ci/config/node/global.rb
View file @
159aed1c
...
...
@@ -39,21 +39,24 @@ module Gitlab
helpers
:before_script
,
:image
,
:services
,
:after_script
,
:variables
,
:stages
,
:types
,
:cache
,
:jobs
def
initialize
(
config
)
return
super
unless
config
.
is_a?
(
Hash
)
jobs
=
config
.
except
(
*
nodes
.
keys
)
global
=
config
.
slice
(
*
nodes
.
keys
)
super
(
global
.
merge
(
jobs:
jobs
))
def
initialize
(
config
,
**
attributes
)
super
(
setup
(
config
),
attributes
)
@global
=
self
end
def
stages
stages_defined?
?
stages_value
:
types_value
end
def
global
self
private
def
setup
(
config
)
return
config
unless
config
.
is_a?
(
Hash
)
jobs
=
config
.
except
(
*
nodes
.
keys
)
global
=
config
.
slice
(
*
nodes
.
keys
)
global
.
merge
(
jobs:
jobs
)
end
end
end
...
...
This diff is collapsed.
Click to expand it.
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