diff mbox series

[yocto-autobuilder-helper,1/3] scripts/release-parser.py: use yocto-docs instead of poky

Message ID 20251219-releases-parser-updates-v1-1-6830e6a67db0@bootlin.com
State New
Headers show
Series scripts/release-parser.py: update and move from poky | expand

Commit Message

Antonin Godard Dec. 19, 2025, 10:35 a.m. UTC
For the release-parser.py to pick up new tags, we need to move away from
the poky repository. Right now, one of source of tags closest to poky we
have is yocto-docs. Add this repository as a dependency of the indexing
job.

Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
---
 config.json               | 1 +
 scripts/release-parser.py | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/config.json b/config.json
index 3229cde..be65d24 100644
--- a/config.json
+++ b/config.json
@@ -1402,6 +1402,7 @@ 
             }
         },
         "indexing" : {
+            "NEEDREPOS": ["yocto-docs"],
             "step1" : {
                 "shortname" : "Generate non-release index",
                 "EXTRACMDS" : ["${SCRIPTSDIR}/generate-testresult-index.py ${BASE_SHAREDDIR}/pub/non-release/"]
diff --git a/scripts/release-parser.py b/scripts/release-parser.py
index 21a6d57..ef25289 100755
--- a/scripts/release-parser.py
+++ b/scripts/release-parser.py
@@ -10,7 +10,7 @@  from collections import defaultdict
 import datetime
 import semver
 
-GIT_REPO = "~/git/mirror/poky"
+GIT_REPO = "~/git/mirror/yocto-docs"
 
 repo = Repo(GIT_REPO)