From a602521ad9ca84417aab84b3561fd84ab1ef403c Mon Sep 17 00:00:00 2001 From: gitbot <gitbot@garz-fricke.com> Date: Tue, 7 Feb 2023 09:42:41 +0000 Subject: [PATCH] Integrate gitlab-ci/do-not-hardcode-projects-in-changelog-generator and 1 more -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/8edbf2a64fe54227a10802b8fc9e1f0fbdd967c2 Changelog generator: fix typo -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/e6ae06dd0872406344c8987d9c1bbd25e7cc9db4 Changelog generator: pass projects as arguments Instead of hard-coding the project list in the changelog generator script, make them passable via arguments. This way we can have different changelogs in different envrionments. Hence we're adding the changelog job in the ci-test environment as well. --- .gitlab-ci | 2 +- .gitlab-ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci b/.gitlab-ci index ed36b46..8edbf2a 160000 --- a/.gitlab-ci +++ b/.gitlab-ci @@ -1 +1 @@ -Subproject commit ed36b4655636ee0b54edd1a282b3b7a6414815e2 +Subproject commit 8edbf2a64fe54227a10802b8fc9e1f0fbdd967c2 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c909f3a..9496c5f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,11 +4,11 @@ # --------------------------------------------------------------------------------------- include: - project: '${CI_PROJECT_ROOT_NAMESPACE}/yocto/infrastructure/gitlab-ci' - ref: ed36b4655636ee0b54edd1a282b3b7a6414815e2 + ref: 8edbf2a64fe54227a10802b8fc9e1f0fbdd967c2 file: 'manifest-integration.yml' variables: - GITLAB_CI_REVISION: ed36b4655636ee0b54edd1a282b3b7a6414815e2 + GITLAB_CI_REVISION: 8edbf2a64fe54227a10802b8fc9e1f0fbdd967c2 BB_RECIPE_NAME: xconfig # FIXME: This is only necessary due to the following GitLab limitation: # https://gitlab.com/gitlab-org/gitlab/-/issues/209904 -- GitLab