From 76f80c454409219c07f77af5abc508272725491a Mon Sep 17 00:00:00 2001 From: gitbot <gitbot@garz-fricke.com> Date: Mon, 5 Sep 2022 08:39:20 +0000 Subject: [PATCH] Integrate gitlab-ci/fix-retrigger-type-error -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/d25cdebff0e10c3aa8c1c1f69bc120aca9aee0cb Really fix potential error message in retrigger job TypeError: 'NoneType' object is not subscriptable Example: https://git.seco.com/seco-ne/yocto/manifest/-/jobs/129201 --- .gitlab-ci | 2 +- .gitlab-ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci b/.gitlab-ci index 3eef782..d25cdeb 160000 --- a/.gitlab-ci +++ b/.gitlab-ci @@ -1 +1 @@ -Subproject commit 3eef782efc50e805fd4640281aa8039d8594720e +Subproject commit d25cdebff0e10c3aa8c1c1f69bc120aca9aee0cb diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index db7dc98..28743fe 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,11 +4,11 @@ # --------------------------------------------------------------------------------------- include: - project: '${CI_PROJECT_ROOT_NAMESPACE}/yocto/infrastructure/gitlab-ci' - ref: 3eef782efc50e805fd4640281aa8039d8594720e + ref: d25cdebff0e10c3aa8c1c1f69bc120aca9aee0cb file: 'manifest-integration.yml' variables: - GITLAB_CI_REVISION: 3eef782efc50e805fd4640281aa8039d8594720e + GITLAB_CI_REVISION: d25cdebff0e10c3aa8c1c1f69bc120aca9aee0cb BB_RECIPE_NAME: seco-show-demo # FIXME: This is only necessary due to the following GitLab limitation: # https://gitlab.com/gitlab-org/gitlab/-/issues/209904 -- GitLab