From 4d2b72f2a1d7534cea553f03223bd00926185aa0 Mon Sep 17 00:00:00 2001 From: gitbot <gitbot.north@seco.com> Date: Thu, 11 Apr 2024 09:58:49 +0000 Subject: [PATCH] Integrate gitlab-ci/fix_copy_directory -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/19ff9d080b2b029cd7afe21cf4f530c8df2c4c71 package_release: Fix missing variable for os.walk Even though the variable isn't used in the package_release script, it seems to be required by the os.walk function. Underscore satisfies the linter preventing it from causeing unused variable errors. --- .gitlab-ci | 2 +- .gitlab-ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci b/.gitlab-ci index 6e6f124..19ff9d0 160000 --- a/.gitlab-ci +++ b/.gitlab-ci @@ -1 +1 @@ -Subproject commit 6e6f124b6aa90aa6eb41779c2a6ddaa12fa5ac25 +Subproject commit 19ff9d080b2b029cd7afe21cf4f530c8df2c4c71 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c792df7..8e37af6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,8 +4,8 @@ # --------------------------------------------------------------------------------------- include: - project: '${CI_PROJECT_ROOT_NAMESPACE}/yocto/infrastructure/gitlab-ci' - ref: 6e6f124b6aa90aa6eb41779c2a6ddaa12fa5ac25 + ref: 19ff9d080b2b029cd7afe21cf4f530c8df2c4c71 file: 'manifest-integration.yml' variables: - GITLAB_CI_REVISION: 6e6f124b6aa90aa6eb41779c2a6ddaa12fa5ac25 + GITLAB_CI_REVISION: 19ff9d080b2b029cd7afe21cf4f530c8df2c4c71 -- GitLab