Skip to content
Snippets Groups Projects
Commit 31eb03a3 authored by GitBot's avatar GitBot
Browse files

Integrate gitlab-ci/fix-confluence-missing-mx6-section and 1 more

--

Commit: seco-ne/yocto/infrastructure/gitlab-ci@ab19eb61

CI: collect_release_information: jump to next pipeline if no deploy jobs found

See for error:
https://git.seco.com/seco-ne/yocto/infrastructure/ci-test/minimal-manifest/-/jobs/828261

--

Commit: seco-ne/yocto/infrastructure/gitlab-ci@ae764fbc

CI: Confluence page: Fix not created mx6 section

The function that merges the variables of the different jobs, i.e:

`MACHINE="mx6"`

`MACHINE="mx6ull"`

used python `in` to check if a value already exists.
But `"mx6" in "mx6ull"` is true, so mx6 was dropped.
This rewrites it, storing the variables in a set (which is unique
automatically) instead of space seperated strings.
Space seperation is added before printing the variables to be used on
on the shell.
parent 0a6b535b
No related branches found
No related tags found
1 merge request!234Integrate gitlab-ci/fix-confluence-missing-mx6-section and 1 more
Pipeline #114596 passed with stage
in 16 seconds
Subproject commit 094983aec67b5e58813cf89d731d052c48804bac Subproject commit ab19eb61134380b86d35ab0c5ec92a3033a272e4
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
# --------------------------------------------------------------------------------------- # ---------------------------------------------------------------------------------------
include: include:
- project: '${CI_PROJECT_ROOT_NAMESPACE}/yocto/infrastructure/gitlab-ci' - project: '${CI_PROJECT_ROOT_NAMESPACE}/yocto/infrastructure/gitlab-ci'
ref: 094983aec67b5e58813cf89d731d052c48804bac ref: ab19eb61134380b86d35ab0c5ec92a3033a272e4
file: 'manifest-integration.yml' file: 'manifest-integration.yml'
variables: variables:
GITLAB_CI_REVISION: 094983aec67b5e58813cf89d731d052c48804bac GITLAB_CI_REVISION: ab19eb61134380b86d35ab0c5ec92a3033a272e4
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