diff mbox series

[meta-arago,scarthgap] check_yocto_rules: Flip to regex for files

Message ID 20250924134256.18304-1-reatmon@ti.com
State Accepted
Delegated to: Ryan Eatmon
Headers show
Series [meta-arago,scarthgap] check_yocto_rules: Flip to regex for files | expand

Commit Message

Ryan Eatmon Sept. 24, 2025, 1:42 p.m. UTC
To better support changing recipe versions that have exceptions, change
to regex instead of full path for file matching.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
---
 check_yocto_rules.json | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

PRC Automation Sept. 24, 2025, 1:45 p.m. UTC | #1
meta-arago / na / 20250924134256.18304-1-reatmon

PRC Results: PASS

=========================================================
  check-yocto-patches: PASS
=========================================================
Patches
----------------------------------------
All patches passed



=========================================================
  apply-yocto-patch: PASS
=========================================================
scarthgap
=====================
Summary:
- Patch Series: [meta-arago][scarthgap][PATCH] check_yocto_rules: Flip to regex for files
- Submitter: From: Ryan Eatmon <reatmon@ti.com>
- Date: Date: Wed, 24 Sep 2025 08:42:56 -0500
- Num Patches: 1
- Mailing List (public inbox) Commit SHA: 0277b0ac060ab8091c5161d4f6171fd817704143

Applied to:
- Repository: lcpd-prc-meta-arago
- Base Branch: scarthgap-next
- Commit Author: LCPD Automation Script <lcpdbld@list.ti.com>
- Commit Subject: CI/CD Auto-Merger: cicd.scarthgap.202509181257
- Commit SHA: 96f3c5b8e2efec96de9db131992e56272becc174

Patches
----------------------------------------
All patches applied



=========================================================
  check-yocto-repo: PASS
=========================================================
scarthgap
=====================
PASS
diff mbox series

Patch

diff --git a/check_yocto_rules.json b/check_yocto_rules.json
index f6ce22a3..f8be0d01 100644
--- a/check_yocto_rules.json
+++ b/check_yocto_rules.json
@@ -4,11 +4,11 @@ 
     },
     "APPEND-2" : {
         "skip_vars" : [ "PR", "PV" ],
-        "files" : {
-            "meta-arago-distro/conf/distro/include/arago-prefs.inc" : {
+        "file_regex" : {
+            "meta-arago-distro\\/conf\\/distro\\/include\\/arago-prefs\\.inc" : {
                 "skip_vars": [ "PREFERRED_PROVIDER_virtual/kernel" ]
             },
-            "meta-arago-distro/recipes-graphics/emptty/emptty_0.13.0.bb" : {
+            "meta-arago-distro\\/recipes-graphics\\/emptty\\/emptty_\\S+\\.bb" : {
                 "skip_vars" : [ "GO_TAGS" ]
             }
         }