From 53e202fb360debb7ca0e1b59ad08255eba66982e Mon Sep 17 00:00:00 2001 From: gitbot <gitbot.north@seco.com> Date: Thu, 19 Sep 2024 07:53:12 +0000 Subject: [PATCH] Integrate gitlab-ci/changelog-generator-all-projects and 1 more -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/3eeebfdc9374799068dbae058e7646c4dd46c663 Changelog: Include all related projects into the changelog In build-pipeline.yml, enable the new parameter by default. YT-256 -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/03af75193388e6bfead48f18d693cd47d40f49e7 Changelog-generator: Add parameter to include all integrated projects Before this, the changelog was generated on a given list of projects, all using the same branch. The new parameter now goes the the specified projects from the parameters, and detects all integrated projects into this. So normally you would specify one or two manifest projects, everything else is automatically added to the list. This also handles different branch names. As for example the kernel branches are different, the integration branch is used instead of the branch from the command line. --- .gitlab-ci | 2 +- .gitlab-ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci b/.gitlab-ci index 37b396e..3eeebfd 160000 --- a/.gitlab-ci +++ b/.gitlab-ci @@ -1 +1 @@ -Subproject commit 37b396e85024b6c07a1a843f10a3e9d72f981945 +Subproject commit 3eeebfdc9374799068dbae058e7646c4dd46c663 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a011852..574685c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,9 +4,9 @@ # --------------------------------------------------------------------------------------- include: - project: '${CI_PROJECT_ROOT_NAMESPACE}/yocto/infrastructure/gitlab-ci' - ref: 37b396e85024b6c07a1a843f10a3e9d72f981945 + ref: 3eeebfdc9374799068dbae058e7646c4dd46c663 file: 'manifest-integration.yml' variables: - GITLAB_CI_REVISION: 37b396e85024b6c07a1a843f10a3e9d72f981945 + GITLAB_CI_REVISION: 3eeebfdc9374799068dbae058e7646c4dd46c663 BB_RECIPE_NAME: secure-element-examples -- GitLab