admin管理员组文章数量:1345016
There is a task that must be completed in a certain order. But for some reason the elements of the task are not completed in the correct order.
qa-test:job:
stage: qa
extends:
- .rule:qa
- .scripts:qa-vault-scripts
- .scripts:qa-test:job
tags:
- $TAGS
I need "extends" to add scripts in the proper order. But why does it add them the other way around, first
scripts:qa-test:job
then
.scripts:qa-vault-scripts
Now scripts:qa-test:job is executed first, which causes errors due to insufficient number of parameters that are in the vault
There is a task that must be completed in a certain order. But for some reason the elements of the task are not completed in the correct order.
qa-test:job:
stage: qa
extends:
- .rule:qa
- .scripts:qa-vault-scripts
- .scripts:qa-test:job
tags:
- $TAGS
I need "extends" to add scripts in the proper order. But why does it add them the other way around, first
scripts:qa-test:job
then
.scripts:qa-vault-scripts
Now scripts:qa-test:job is executed first, which causes errors due to insufficient number of parameters that are in the vault
Share edited 19 hours ago Gaël J 15.6k5 gold badges22 silver badges45 bronze badges asked 23 hours ago Антон ЧелышковАнтон Челышков 591 gold badge2 silver badges7 bronze badges1 Answer
Reset to default 1You cannot use extends
to accumulate values of different parents.
For a given key, the "closest" value will be used.
For instance, if both .scripts:qa-vault-scripts
and .scripts:qa-test:job
define the script
key, then the "closest" will win, that is the latest declared.
Reference documentation:
- https://docs.gitlab/ci/yaml/#extends
- https://docs.gitlab/ci/yaml/yaml_optimization/#merge-details
The algorithm used for merge is “closest scope wins”. When there are duplicate keys, GitLab performs a reverse deep merge based on the keys. Keys from the last member always override anything defined on other levels.
You can use anchors or !reference
for more control.
本文标签: Calling scripts in gitlabciStack Overflow
版权声明:本文标题:Calling scripts in gitlab-ci - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743771975a2536287.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论