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
Jérome Perrin
gitlab-ce
Commits
295cecfb
Commit
295cecfb
authored
May 07, 2017
by
blackst0ne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow numeric values in gitlab-ci.yml
parent
1005389f
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
30 additions
and
4 deletions
+30
-4
changelogs/unreleased/allow_numeric_values_in_gitlab_ci_yml.yml
...logs/unreleased/allow_numeric_values_in_gitlab_ci_yml.yml
+4
-0
doc/ci/yaml/README.md
doc/ci/yaml/README.md
+5
-1
lib/gitlab/ci/config/entry/legacy_validation_helpers.rb
lib/gitlab/ci/config/entry/legacy_validation_helpers.rb
+7
-1
lib/gitlab/ci/config/entry/variables.rb
lib/gitlab/ci/config/entry/variables.rb
+4
-0
spec/lib/gitlab/ci/config/entry/global_spec.rb
spec/lib/gitlab/ci/config/entry/global_spec.rb
+2
-2
spec/lib/gitlab/ci/config/entry/variables_spec.rb
spec/lib/gitlab/ci/config/entry/variables_spec.rb
+8
-0
No files found.
changelogs/unreleased/allow_numeric_values_in_gitlab_ci_yml.yml
0 → 100644
View file @
295cecfb
---
title
:
Allow numeric values in gitlab-ci.yml
merge_request
:
10607
author
:
blackst0ne
doc/ci/yaml/README.md
View file @
295cecfb
...
...
@@ -147,6 +147,10 @@ variables:
DATABASE_URL
:
"
postgres://postgres@postgres/my_database"
```
>**Note:**
Integers (as well as strings) are legal both for variable's name and value.
Floats are not legal and cannot be used.
These variables can be later used in all executed commands and scripts.
The YAML-defined variables are also set to all created service containers,
thus allowing to fine tune them. Variables can be also defined on a
...
...
@@ -1147,7 +1151,7 @@ Example:
```
yaml
variables
:
GET_SOURCES_ATTEMPTS
:
"
3"
GET_SOURCES_ATTEMPTS
:
3
```
You can set them in the global
[
`variables`
](
#variables
)
section or the
...
...
lib/gitlab/ci/config/entry/legacy_validation_helpers.rb
View file @
295cecfb
...
...
@@ -21,7 +21,13 @@ module Gitlab
def
validate_variables
(
variables
)
variables
.
is_a?
(
Hash
)
&&
variables
.
all?
{
|
key
,
value
|
validate_string
(
key
)
&&
validate_string
(
value
)
}
variables
.
flatten
.
all?
do
|
value
|
validate_string
(
value
)
||
validate_integer
(
value
)
end
end
def
validate_integer
(
value
)
value
.
is_a?
(
Integer
)
end
def
validate_string
(
value
)
...
...
lib/gitlab/ci/config/entry/variables.rb
View file @
295cecfb
...
...
@@ -15,6 +15,10 @@ module Gitlab
def
self
.
default
{}
end
def
value
Hash
[
@config
.
map
{
|
key
,
value
|
[
key
.
to_s
,
value
.
to_s
]
}]
end
end
end
end
...
...
spec/lib/gitlab/ci/config/entry/global_spec.rb
View file @
295cecfb
...
...
@@ -113,7 +113,7 @@ describe Gitlab::Ci::Config::Entry::Global do
describe
'#variables_value'
do
it
'returns variables'
do
expect
(
global
.
variables_value
).
to
eq
(
VAR
:
'value'
)
expect
(
global
.
variables_value
).
to
eq
(
'VAR'
=>
'value'
)
end
end
...
...
@@ -154,7 +154,7 @@ describe Gitlab::Ci::Config::Entry::Global do
services:
[
'postgres:9.1'
,
'mysql:5.5'
],
stage:
'test'
,
cache:
{
key:
'k'
,
untracked:
true
,
paths:
[
'public/'
]
},
variables:
{
VAR
:
'value'
},
variables:
{
'VAR'
=>
'value'
},
ignore:
false
,
after_script:
[
'make clean'
]
},
spinach:
{
name: :spinach
,
...
...
spec/lib/gitlab/ci/config/entry/variables_spec.rb
View file @
295cecfb
...
...
@@ -13,6 +13,14 @@ describe Gitlab::Ci::Config::Entry::Variables do
it
'returns hash with key value strings'
do
expect
(
entry
.
value
).
to
eq
config
end
context
'with numeric keys and values in the config'
do
let
(
:config
)
{
{
10
=>
20
}
}
it
'converts numeric key and numeric value into strings'
do
expect
(
entry
.
value
).
to
eq
(
'10'
=>
'20'
)
end
end
end
describe
'#errors'
do
...
...
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