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
a1363d39
Commit
a1363d39
authored
Apr 08, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add `variables` keyword to job in CI config YAML
parent
e32fc756
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
60 additions
and
15 deletions
+60
-15
app/models/ci/build.rb
app/models/ci/build.rb
+10
-2
lib/ci/gitlab_ci_yaml_processor.rb
lib/ci/gitlab_ci_yaml_processor.rb
+2
-1
spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
+32
-12
spec/models/build_spec.rb
spec/models/build_spec.rb
+16
-0
No files found.
app/models/ci/build.rb
View file @
a1363d39
...
...
@@ -365,9 +365,11 @@ module Ci
self
.
update
(
erased_by:
user
,
erased_at:
Time
.
now
)
end
private
def
yaml_variables
global_yaml_variables
+
job_yaml_variables
end
def
global_yaml_variables
if
commit
.
config_processor
commit
.
config_processor
.
variables
.
map
do
|
key
,
value
|
{
key:
key
,
value:
value
,
public:
true
}
...
...
@@ -377,6 +379,12 @@ module Ci
end
end
def
job_yaml_variables
options
[
:variables
].
to_h
.
map
do
|
key
,
value
|
{
key:
key
,
value:
value
,
public:
true
}
end
end
def
project_variables
project
.
variables
.
map
do
|
variable
|
{
key:
variable
.
key
,
value:
variable
.
value
,
public:
false
}
...
...
lib/ci/gitlab_ci_yaml_processor.rb
View file @
a1363d39
...
...
@@ -7,7 +7,7 @@ module Ci
ALLOWED_YAML_KEYS
=
[
:before_script
,
:image
,
:services
,
:types
,
:stages
,
:variables
,
:cache
]
ALLOWED_JOB_KEYS
=
[
:tags
,
:script
,
:only
,
:except
,
:type
,
:image
,
:services
,
:allow_failure
,
:type
,
:stage
,
:when
,
:artifacts
,
:cache
,
:dependencies
]
:dependencies
,
:variables
]
attr_reader
:before_script
,
:image
,
:services
,
:variables
,
:path
,
:cache
...
...
@@ -85,6 +85,7 @@ module Ci
artifacts:
job
[
:artifacts
],
cache:
job
[
:cache
]
||
@cache
,
dependencies:
job
[
:dependencies
],
variables:
job
[
:variables
],
}.
compact
}
end
...
...
spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
View file @
a1363d39
...
...
@@ -346,19 +346,39 @@ module Ci
end
describe
"Variables"
do
it
"returns variables when defined"
do
variables
=
{
var1:
"value1"
,
var2:
"value2"
,
}
config
=
YAML
.
dump
({
variables:
variables
,
before_script:
[
"pwd"
],
rspec:
{
script:
"rspec"
}
})
context
'when global variables are defined'
do
it
'returns variables'
do
variables
=
{
var1:
"value1"
,
var2:
"value2"
,
}
config
=
YAML
.
dump
({
variables:
variables
,
before_script:
[
"pwd"
],
rspec:
{
script:
"rspec"
}
})
config_processor
=
GitlabCiYamlProcessor
.
new
(
config
,
path
)
expect
(
config_processor
.
variables
).
to
eq
(
variables
)
config_processor
=
GitlabCiYamlProcessor
.
new
(
config
,
path
)
expect
(
config_processor
.
variables
).
to
eq
(
variables
)
end
end
context
'when job variables are defined'
do
let
(
:job_variables
)
{
{
KEY1
:
'value1'
,
SOME_KEY_2
:
'value2'
}
}
let
(
:yaml_config
)
do
YAML
.
dump
(
{
before_script:
[
'pwd'
],
rspec:
{
variables:
job_variables
,
script:
'rspec'
}
})
end
it
'appends job variable to job attributes'
do
config
=
GitlabCiYamlProcessor
.
new
(
yaml_config
,
path
)
expect
(
config
.
builds
.
first
[
:options
][
:variables
]).
to
eq
job_variables
end
end
end
...
...
spec/models/build_spec.rb
View file @
a1363d39
...
...
@@ -238,6 +238,22 @@ describe Ci::Build, models: true do
it
{
is_expected
.
to
eq
(
predefined_variables
+
predefined_trigger_variable
+
yaml_variables
+
secure_variables
+
trigger_variables
)
}
end
context
'when job variables are defined'
do
before
{
build
.
update_attribute
(
:options
,
variables:
job_variables
)
}
context
'when job variables are unique'
do
let
(
:job_variables
)
{
{
KEY1
:
'value1'
,
KEY2
:
'value2'
}
}
let
(
:resulting_variables
)
do
[{
key: :KEY1
,
value:
'value1'
,
public:
true
},
{
key: :KEY2
,
value:
'value2'
,
public:
true
}]
end
it
'includes job variables'
do
expect
(
subject
).
to
include
(
*
resulting_variables
)
end
end
end
end
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