Skip to content
Snippets Groups Projects
Commit 828a15bc authored by Grzegorz Bizon's avatar Grzegorz Bizon
Browse files

Rename method used to allow node in Ci config

parent 51046dd2
No related branches found
No related tags found
1 merge request!4482Add global entry with before script to new CI config
Pipeline #
Loading
Loading
@@ -25,7 +25,7 @@ module Gitlab
end
 
def allowed_nodes
self.class.nodes || {}
self.class.allowed_nodes || {}
end
 
private
Loading
Loading
@@ -46,16 +46,16 @@ module Gitlab
end
 
class_methods do
attr_reader :nodes
attr_reader :allowed_nodes
 
private
 
def add_node(symbol, entry_class, metadata)
def allow_node(symbol, entry_class, metadata)
node = { symbol.to_sym =>
{ class: entry_class,
description: metadata[:description] } }
 
(@nodes ||= {}).merge!(node)
(@allowed_nodes ||= {}).merge!(node)
end
end
end
Loading
Loading
Loading
Loading
@@ -9,7 +9,7 @@ module Gitlab
class Global < Entry
include Configurable
 
add_node :before_script, Script,
allow_node :before_script, Script,
description: 'Script that will be executed before each job.'
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment