From 64f8114cc24e20f23fdd1a5f9db81c0ff563644c Mon Sep 17 00:00:00 2001 From: gitbot <gitbot.north@seco.com> Date: Wed, 9 Oct 2024 09:44:13 +0000 Subject: [PATCH] Integrate gitlab-ci/lrom/d18_test_fix -- Commit: https://git.seco.com/clea-os/infrastructure/gitlab-ci/-/commit/5b87d9701f4bc7b72d26d92d7f552c2adf7d10d6 [FIX][TEST][RELEASE] fix in image update job and in custom release - The bmap files are not accessible from the custom project release pages, this is due to the fact that the access token appended to the links grants access to the "image" files. This commit fix that; - Delete the appended token in custom images links because another token is already added in the deploy stage, when the deploy_artifacts.sh script is called. --- .gitlab-ci | 2 +- .gitlab-ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci b/.gitlab-ci index a4de07e..5b87d97 160000 --- a/.gitlab-ci +++ b/.gitlab-ci @@ -1 +1 @@ -Subproject commit a4de07e983ec27d8b8682bf6e42494d3c2fc3f02 +Subproject commit 5b87d9701f4bc7b72d26d92d7f552c2adf7d10d6 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6f95639..7e5753e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,11 +4,11 @@ # --------------------------------------------------------------------------------------- include: - project: '${CI_PROJECT_ROOT_NAMESPACE}/infrastructure/gitlab-ci' - ref: a4de07e983ec27d8b8682bf6e42494d3c2fc3f02 + ref: 5b87d9701f4bc7b72d26d92d7f552c2adf7d10d6 file: 'layers-integration.yml' variables: - GITLAB_CI_REVISION: a4de07e983ec27d8b8682bf6e42494d3c2fc3f02 + GITLAB_CI_REVISION: 5b87d9701f4bc7b72d26d92d7f552c2adf7d10d6 # FIXME: This is only necessary due to the following GitLab limitation: # https://gitlab.com/gitlab-org/gitlab/-/issues/209904 # As soon as this gets fixed upstream, the hard-coded branch name should be removed. -- GitLab