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
Léo-Paul Géneau
gitlab-ce
Commits
0cf0a7a8
Commit
0cf0a7a8
authored
Mar 13, 2018
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DRY project-level predefined variables
parent
a4a29e2e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
20 deletions
+26
-20
app/models/ci/build.rb
app/models/ci/build.rb
+1
-3
app/models/project.rb
app/models/project.rb
+9
-9
app/models/project_auto_devops.rb
app/models/project_auto_devops.rb
+6
-4
lib/gitlab/ci/variables/collection/item.rb
lib/gitlab/ci/variables/collection/item.rb
+6
-0
spec/models/project_auto_devops_spec.rb
spec/models/project_auto_devops_spec.rb
+4
-4
No files found.
app/models/ci/build.rb
View file @
0cf0a7a8
...
...
@@ -257,12 +257,10 @@ module Ci
variables
.
concat
(
project
.
predefined_variables
)
variables
.
concat
(
pipeline
.
predefined_variables
)
variables
.
concat
(
runner
.
predefined_variables
)
if
runner
variables
.
concat
(
project
.
container_registry_variables
)
variables
.
concat
(
project
.
deployment_variables
)
if
has_environment?
variables
.
concat
(
project
.
auto_devops_variables
)
variables
.
concat
(
yaml_variables
)
variables
.
concat
(
user_variables
)
variables
.
concat
(
project
.
group
.
secret_variables_for
(
ref
,
project
)
.
map
(
&
:to_runner_variable
)
)
if
project
.
group
variables
.
concat
(
project
.
group
.
secret_variables_for
(
ref
,
project
))
if
project
.
group
variables
.
concat
(
secret_variables
(
environment:
environment
))
variables
.
concat
(
trigger_request
.
user_variables
)
if
trigger_request
variables
.
concat
(
pipeline
.
variables
)
...
...
app/models/project.rb
View file @
0cf0a7a8
...
...
@@ -1581,21 +1581,21 @@ class Project < ActiveRecord::Base
variables
.
append
(
key:
'CI_PROJECT_NAMESPACE'
,
value:
namespace
.
full_path
,
public:
true
)
variables
.
append
(
key:
'CI_PROJECT_URL'
,
value:
web_url
,
public:
true
)
variables
.
append
(
key:
'CI_PROJECT_VISIBILITY'
,
value:
visibility
,
public:
true
)
variables
.
concat
(
container_registry_variables
)
variables
.
concat
(
auto_devops_variables
)
end
end
def
container_registry_variables
return
[]
unless
Gitlab
.
config
.
registry
.
enabled
Gitlab
::
Ci
::
Variables
::
Collection
.
new
.
tap
do
|
variables
|
return
variables
unless
Gitlab
.
config
.
registry
.
enabled
variables
=
[
{
key:
'CI_REGISTRY'
,
value:
Gitlab
.
config
.
registry
.
host_port
,
public:
true
}
]
variables
.
append
(
key:
'CI_REGISTRY'
,
value:
Gitlab
.
config
.
registry
.
host_port
,
public:
true
)
if
container_registry_enabled?
variables
<<
{
key:
'CI_REGISTRY_IMAGE'
,
value:
container_registry_url
,
public:
true
}
if
container_registry_enabled?
variables
.
append
(
key:
'CI_REGISTRY_IMAGE'
,
value:
container_registry_url
,
public:
true
)
end
end
variables
end
def
secret_variables_for
(
ref
:,
environment:
nil
)
...
...
@@ -1624,7 +1624,7 @@ class Project < ActiveRecord::Base
def
auto_devops_variables
return
[]
unless
auto_devops_enabled?
(
auto_devops
||
build_auto_devops
)
&
.
variables
(
auto_devops
||
build_auto_devops
)
&
.
predefined_
variables
end
def
append_or_update_attribute
(
name
,
value
)
...
...
app/models/project_auto_devops.rb
View file @
0cf0a7a8
...
...
@@ -14,9 +14,11 @@ class ProjectAutoDevops < ActiveRecord::Base
domain
.
present?
||
instance_domain
.
present?
end
def
variables
variables
=
[]
variables
<<
{
key:
'AUTO_DEVOPS_DOMAIN'
,
value:
domain
.
presence
||
instance_domain
,
public:
true
}
if
has_domain?
variables
def
predefined_variables
Gitlab
::
Ci
::
Variables
::
Collection
.
new
.
tap
do
|
variables
|
variables
.
append
(
key:
'AUTO_DEVOPS_DOMAIN'
,
value:
domain
.
presence
||
instance_domain
,
public:
true
)
if
has_domain?
end
end
end
lib/gitlab/ci/variables/collection/item.rb
View file @
0cf0a7a8
...
...
@@ -14,6 +14,10 @@ module Gitlab
}
end
def
[]
(
key
)
@variable
.
fetch
(
key
)
end
def
==
(
other
)
to_hash
==
self
.
class
.
fabricate
(
other
).
to_hash
end
...
...
@@ -39,6 +43,8 @@ module Gitlab
self
.
new
(
resource
.
to_hash
)
when
::
Ci
::
PipelineVariable
self
.
new
(
resource
.
to_hash
)
when
::
Ci
::
GroupVariable
self
.
new
(
resource
.
to_hash
)
when
self
resource
.
dup
else
...
...
spec/models/project_auto_devops_spec.rb
View file @
0cf0a7a8
...
...
@@ -36,14 +36,14 @@ describe ProjectAutoDevops do
end
end
describe
'#variables'
do
describe
'#
predefined_
variables'
do
let
(
:auto_devops
)
{
build_stubbed
(
:project_auto_devops
,
project:
project
,
domain:
domain
)
}
context
'when domain is defined'
do
let
(
:domain
)
{
'example.com'
}
it
'returns AUTO_DEVOPS_DOMAIN'
do
expect
(
auto_devops
.
variables
).
to
include
(
domain_variable
)
expect
(
auto_devops
.
predefined_
variables
).
to
include
(
domain_variable
)
end
end
...
...
@@ -55,7 +55,7 @@ describe ProjectAutoDevops do
allow
(
Gitlab
::
CurrentSettings
).
to
receive
(
:auto_devops_domain
).
and_return
(
'example.com'
)
end
it
{
expect
(
auto_devops
.
variables
).
to
include
(
domain_variable
)
}
it
{
expect
(
auto_devops
.
predefined_
variables
).
to
include
(
domain_variable
)
}
end
context
'when there is no instance domain specified'
do
...
...
@@ -63,7 +63,7 @@ describe ProjectAutoDevops do
allow
(
Gitlab
::
CurrentSettings
).
to
receive
(
:auto_devops_domain
).
and_return
(
nil
)
end
it
{
expect
(
auto_devops
.
variables
).
not_to
include
(
domain_variable
)
}
it
{
expect
(
auto_devops
.
predefined_
variables
).
not_to
include
(
domain_variable
)
}
end
end
...
...
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