From 9d16deb145266623b10da366368b4527d0a74f8c Mon Sep 17 00:00:00 2001 From: gitbot <gitbot@garz-fricke.com> Date: Wed, 6 Jul 2022 12:26:27 +0000 Subject: [PATCH] Integrate gitlab-ci/CI-readd-allow-failure-true -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/ea3aa8164756750f9e8fbfd642ea1ebdf871fc5a CI: Readd allow_failure:true to fix not finished pipelines According to the docs a manual job always has allow_failure set to true, but we see a lot of jobs staying in an unfinished state since the removal of the allow_failure: true keyword for the sdk and test jobs. This should fix the broken behaviour. --- .gitlab-ci | 2 +- .gitlab-ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci b/.gitlab-ci index dc0503b6..ea3aa816 160000 --- a/.gitlab-ci +++ b/.gitlab-ci @@ -1 +1 @@ -Subproject commit dc0503b699bc0fe529a8ca72216b18b0a093be0a +Subproject commit ea3aa8164756750f9e8fbfd642ea1ebdf871fc5a diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 29ac4da7..15a0f75c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,14 +4,14 @@ # --------------------------------------------------------------------------------------- include: - project: '${CI_PROJECT_ROOT_NAMESPACE}/yocto/infrastructure/gitlab-ci' - ref: dc0503b699bc0fe529a8ca72216b18b0a093be0a + ref: ea3aa8164756750f9e8fbfd642ea1ebdf871fc5a file: 'manifest-pipeline-yocto.yml' variables: MANIFEST_PROJECT_ID: 1725 MASTER_BRANCH_MANIFEST: kirkstone MASTER_BRANCH_PROJECT: kirkstone - GITLAB_CI_REVISION: dc0503b699bc0fe529a8ca72216b18b0a093be0a + GITLAB_CI_REVISION: ea3aa8164756750f9e8fbfd642ea1ebdf871fc5a CI_PARAM_IMAGE: seconorth-image CI_PARAM_DISTRO: seconorth-wayland CI_PARAM_IMAGE_FNG: fngsystem-image -- GitLab