diff mbox series

[yocto-autobuilder2] config.py: add a builder for providing CDN sstate to bitbake-setup users

Message ID 20250225121536.519502-1-alex.kanavin@gmail.com
State New
Headers show
Series [yocto-autobuilder2] config.py: add a builder for providing CDN sstate to bitbake-setup users | expand

Commit Message

Alexander Kanavin Feb. 25, 2025, 12:15 p.m. UTC
From: Alexander Kanavin <alex@linutronix.de>

This builder is somewhat tricky to define as it needs to be triggered
on new commits in stable branches (and master) of oe-core and poky
and run bitbake-setup from master branch of bitbake against
a configuration matching the branch that got new commits.

And the bitbake-setup configuration needs to be tweaked to
add autobuilder resource consumption tweaks from config.json.

The plan is to experiment with all this in a private branch
in yocto-autobuilder-helper, but that needs a builder entry
here.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 config.py | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/config.py b/config.py
index 67d80e5..f6f110a 100644
--- a/config.py
+++ b/config.py
@@ -35,6 +35,7 @@  buildertorepos = {
     "auh-meta-oe":  ["poky", "meta-openembedded", "auto-upgrade-helper"],
     "metrics":  ["poky", "meta-openembedded"],
     "meta-webosose":  ["poky", "meta-clang", "meta-openembedded", "meta-qt6", "meta-webosose", "meta-security"],
+    "populate-bitbake-setup-sstate": ["bitbake"],
     "default": ["poky"]
 }
 
@@ -152,6 +153,7 @@  builders_others = [
     "yocto-mirror",
     "meta-oe-mirror",
     "auh", "auh-meta-oe",
+    "populate-bitbake-setup-sstate",
     "meta-webosose"
 ]