Skip to content
Snippets Groups Projects
Commit 20eb5ab6 authored by Zygmunt Krynicki's avatar Zygmunt Krynicki
Browse files

.gitlab-ci.yml: swap order of extends entries


Previous patch shows that the CI_ONIRO_MAGIC variable, when seen from
the linux-qemu-x86 job, has the value
".oniro-ci/build-generic.yaml:96:.bitbake-workspace". This implies that
the rule-specific variable defined in .gitlab-ci.yml, the
.workspace-rules job, was ignored.

Swap the order of entries in the extends declaration, to see if this has
any effect.

Signed-off-by: default avatarZygmunt Krynicki <zygmunt.krynicki@huawei.com>
parent 1de2f918
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !126. Comments created here will be created in the context of that merge request.
......@@ -107,10 +107,10 @@ aggregate-docs:
# that replace the previous value.
.bitbake-workspace:
extends: [.workspace, .workspace-rules]
extends: [.workspace-rules, .workspace]
.build-rauc-bundle:
extends: [.build-image, .workspace-rules]
extends: [.workspace-rules, .build-image]
.publish-rauc-bundle-to-hawkbit:
extends: [.workspace-rules]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment