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
Kazuhiko Shiozaki
gitlab-ce
Commits
ad4d3a07
Commit
ad4d3a07
authored
Mar 11, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Describe special YAML features: the use of anchors and hidden jobs
parent
0c5b92cb
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
104 additions
and
0 deletions
+104
-0
CHANGELOG
CHANGELOG
+2
-0
doc/ci/yaml/README.md
doc/ci/yaml/README.md
+71
-0
lib/ci/gitlab_ci_yaml_processor.rb
lib/ci/gitlab_ci_yaml_processor.rb
+2
-0
spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
+29
-0
No files found.
CHANGELOG
View file @
ad4d3a07
...
@@ -16,6 +16,8 @@ v 8.6.0 (unreleased)
...
@@ -16,6 +16,8 @@ v 8.6.0 (unreleased)
- Return empty array instead of 404 when commit has no statuses in commit status API
- Return empty array instead of 404 when commit has no statuses in commit status API
- Decrease the font size and the padding of the `.anchor` icons used in the README (Roberto Dip)
- Decrease the font size and the padding of the `.anchor` icons used in the README (Roberto Dip)
- Rewrite logo to simplify SVG code (Sean Lang)
- Rewrite logo to simplify SVG code (Sean Lang)
- Allow to use YAML anchors when parsing the `.gitlab-ci.yml` (Pascal Bach)
- Ignore jobs that start with `.` (hidden jobs)
- Add support for cross-project label references
- Add support for cross-project label references
- Update documentation to reflect Guest role not being enforced on internal projects
- Update documentation to reflect Guest role not being enforced on internal projects
- Allow search for logged out users
- Allow search for logged out users
...
...
doc/ci/yaml/README.md
View file @
ad4d3a07
...
@@ -509,6 +509,77 @@ rspec:
...
@@ -509,6 +509,77 @@ rspec:
The cache is provided on best effort basis, so don't expect that cache will be
The cache is provided on best effort basis, so don't expect that cache will be
always present. For implementation details please check GitLab Runner.
always present. For implementation details please check GitLab Runner.
## Special features
It's possible special YAML features like anchors and map merging.
Thus allowing to greatly reduce the complexity of
`.gitlab-ci.yml`
.
#### Anchors
You can read more about YAML features
[
here
](
https://learnxinyminutes.com/docs/yaml/
)
.
```
yaml
.job_template
:
&job_definition
image
:
ruby:2.1
services
:
-
postgres
-
redis
test1
:
<< *job_definition
script
:
-
test project
test2
:
<< *job_definition
script
:
-
test project
```
The above example uses anchors and map merging.
It will create a two jobs:
`test1`
and
`test2`
that will have the parameters of
`.job_template`
and custom
`script`
defined.
```
yaml
.job_template
:
&job_definition
script
:
-
test project
.postgres_services
:
services
:
&postgres_definition
-
postgres
-
ruby
.mysql_services
:
services
:
&mysql_definition
-
mysql
-
ruby
test:postgres:
<< *job_definition
services
:
*postgres_definition
test:mysql:
<< *job_definition
services
:
*mysql_definition
```
The above example uses anchors to define two set of services.
It will create a two jobs:
`test:postgres`
and
`test:mysql`
that will have the script defined in
`.job_template`
and one, the service defined in
`.postgres_services`
and second the services defined in
`.mysql_services`
.
### Hidden jobs
The jobs that start with
`.`
will be not processed by GitLab.
Example of such hidden jobs:
```
yaml
.job_name
:
script
:
-
rake spec
```
The
`.job_name`
will be ignored. You can use this feature to ignore jobs, or use them as templates with special YAML features.
## Validate the .gitlab-ci.yml
## Validate the .gitlab-ci.yml
Each instance of GitLab CI has an embedded debug tool called Lint.
Each instance of GitLab CI has an embedded debug tool called Lint.
...
...
lib/ci/gitlab_ci_yaml_processor.rb
View file @
ad4d3a07
...
@@ -60,6 +60,7 @@ module Ci
...
@@ -60,6 +60,7 @@ module Ci
@jobs
=
{}
@jobs
=
{}
@config
.
each
do
|
key
,
job
|
@config
.
each
do
|
key
,
job
|
next
if
key
.
to_s
.
start_with?
(
'.'
)
stage
=
job
[
:stage
]
||
job
[
:type
]
||
DEFAULT_STAGE
stage
=
job
[
:stage
]
||
job
[
:type
]
||
DEFAULT_STAGE
@jobs
[
key
]
=
{
stage:
stage
}.
merge
(
job
)
@jobs
[
key
]
=
{
stage:
stage
}.
merge
(
job
)
end
end
...
@@ -81,6 +82,7 @@ module Ci
...
@@ -81,6 +82,7 @@ module Ci
services:
job
[
:services
]
||
@services
,
services:
job
[
:services
]
||
@services
,
artifacts:
job
[
:artifacts
],
artifacts:
job
[
:artifacts
],
cache:
job
[
:cache
]
||
@cache
,
cache:
job
[
:cache
]
||
@cache
,
dependencies:
job
[
:dependencies
],
}.
compact
}.
compact
}
}
end
end
...
...
spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
View file @
ad4d3a07
...
@@ -427,6 +427,35 @@ module Ci
...
@@ -427,6 +427,35 @@ module Ci
end
end
end
end
describe
"Hidden jobs"
do
let
(
:config
)
do
YAML
.
dump
({
'.hidden_job'
=>
{
script:
'test'
},
'normal_job'
=>
{
script:
'test'
}
})
end
let
(
:config_processor
)
{
GitlabCiYamlProcessor
.
new
(
config
)
}
subject
{
config_processor
.
builds_for_stage_and_ref
(
"test"
,
"master"
)
}
it
"doesn't create jobs that starts with dot"
do
expect
(
subject
.
size
).
to
eq
(
1
)
expect
(
subject
.
first
).
to
eq
({
except:
nil
,
stage:
"test"
,
stage_idx:
1
,
name: :normal_job
,
only:
nil
,
commands:
"
\n
test"
,
tag_list:
[],
options:
{},
when:
"on_success"
,
allow_failure:
false
})
end
end
describe
"Error handling"
do
describe
"Error handling"
do
it
"fails to parse YAML"
do
it
"fails to parse YAML"
do
expect
{
GitlabCiYamlProcessor
.
new
(
"invalid: yaml: test"
)}.
to
raise_error
(
Psych
::
SyntaxError
)
expect
{
GitlabCiYamlProcessor
.
new
(
"invalid: yaml: test"
)}.
to
raise_error
(
Psych
::
SyntaxError
)
...
...
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