diff mbox series

[meta-arago,scarthgap,8/8] check_yocto_rules: Add new config file

Message ID 20250519170110.22506-9-reatmon@ti.com
State Under Review
Delegated to: Ryan Eatmon
Headers show
Series Cleanup for auto checking | expand

Commit Message

Ryan Eatmon May 19, 2025, 5:01 p.m. UTC
TI is starting to run an automated checker for all incoming patches to
the mailing list.  One of the checks is to scan all of the files in the
repository looking for things that we have flagged as the "right way" of
doing recipes.  This file contains a set of exceptions that the checking
script is finding but can be skipped due to manual review.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
---
 check_yocto_rules.json | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 check_yocto_rules.json
diff mbox series

Patch

diff --git a/check_yocto_rules.json b/check_yocto_rules.json
new file mode 100644
index 00000000..9cf776df
--- /dev/null
+++ b/check_yocto_rules.json
@@ -0,0 +1,27 @@ 
+{
+    "APPEND-1" : {
+        "skip_vars" : [ "FILES", "RDEPENDS" ]
+    },
+    "APPEND-2" : {
+        "skip_vars" : [ "PR", "PV" ],
+        "files" : {
+            "meta-arago-distro/conf/distro/include/arago-prefs.inc" : {
+                "skip_vars": [ "PREFERRED_PROVIDER_virtual/kernel" ]
+            }
+        }
+    },
+    "GUARD-1" : {
+        "skip_files" : [
+            "meta-arago-distro/dynamic-layers/chromium-browser-layer/recipes-core/images/tisdk-default-image.bbappend",
+            "meta-arago-distro/dynamic-layers/selinux/recipes-core/images/tisdk-default-image.bbappend",
+            "meta-arago-distro/dynamic-layers/selinux/recipes-kernel/linux/linux-ti-staging_%.bbappend",
+            "meta-arago-extras/recipes-extended/sysrepo/libyang_%.bbappend",
+            "meta-arago-test/dynamic-layers/qt6-layer/recipes-core/packagegroups/ti-test.bbappend",
+            "meta-arago-test/recipes-benchmark/stream/stream_%.bbappend",
+            "meta-arago-test/recipes-extended/bc/bc_%.bbappend"
+        ]
+    },
+    "GUARD-2" : {
+        "skip_vars" : [ "arago" , "ti-soc" ]
+    }
+}