From b26e622c729f45686e277c721841e3737cd2cb20 Mon Sep 17 00:00:00 2001
From: gitbot <gitbot.north@seco.com>
Date: Mon, 18 Mar 2024 08:24:20 +0000
Subject: [PATCH] Integrate gitlab-ci/bb-recipe-linter and 1 more

--

Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/44000de140798d4aeff5909808a88d8cd0e4770d

Check bitbake recipes with linter

The job checks bitbake recipes added/updated in MR using the
oelint-adv tool (https://github.com/priv-kweihmann/oelint-adv).

.oelint.json is a rulefile, created with the command
"oelint-adv --print-rulefile". It can be used during development.
It contains default rules for now, but will probably be customized later.

To get the list of changed files in MR, we adjusted the GIT_DEPTH variable.
The new value is 50, which should be fine for getting MR changes,
and still small enough to keep checkout fast for large projects.

--

Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/9d9574d16cd508d94c3473c286bc411d2906936c

convert_md2html: fix text duplication

Fix the problem introduced by commit 4f06516 "convert_md2html: fix id
fields for headings".

The text converted from markdown was written twice to the HTML document.
---
 .gitlab-ci     | 2 +-
 .gitlab-ci.yml | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci b/.gitlab-ci
index 4f06516..44000de 160000
--- a/.gitlab-ci
+++ b/.gitlab-ci
@@ -1 +1 @@
-Subproject commit 4f06516ae2186d539f2daf214d96138e486affdd
+Subproject commit 44000de140798d4aeff5909808a88d8cd0e4770d
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a721ceb..50d19fb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,9 +4,9 @@
 # ---------------------------------------------------------------------------------------
 include:
   - project: '${CI_PROJECT_ROOT_NAMESPACE}/yocto/infrastructure/gitlab-ci'
-    ref: 4f06516ae2186d539f2daf214d96138e486affdd
+    ref: 44000de140798d4aeff5909808a88d8cd0e4770d
     file: 'manifest-integration.yml'
 
 variables:
-  GITLAB_CI_REVISION: 4f06516ae2186d539f2daf214d96138e486affdd
+  GITLAB_CI_REVISION: 44000de140798d4aeff5909808a88d8cd0e4770d
   BB_RECIPE_NAME: seco-yocto-testsuite
-- 
GitLab