[yocto-autobuilder2] [PATCH 1/2] config: Add reproducible-arm, reproducible-cross and reproducible-arm-cross builders

Richard Purdie <[email protected]> Wed, 29 Jul 2026 18:07:36 +0100
Newsgroups org.yoctoproject.lists.yocto-patches
Message-ID <[email protected]>
Now that we have arm workers, we can benefit from wider reproduciblity
testing. Add some arm and cross builders to verify reproducibility on
different architectures/machines.

Signed-off-by: Richard Purdie <[email protected]>
---
 config.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/config.py b/config.py
index f5ff40ad..0f72f1ef 100644
--- a/config.py
+++ b/config.py
@@ -153,6 +153,7 @@ builders_others = [
     "buildperf-debian11",
     "buildperf-alma8",
     "reproducible-meta-oe",
+    "reproducible-arm", "reproducible-cross", "reproducible-arm-cross",
     "patchtest-selftest",
     "toaster",
     "patchtest",
@@ -243,6 +244,8 @@ builder_to_workers = {
     "qemuarm64-musl-ptest": workers_arm,
     "qemuarm64-ltp": workers_arm,
     "qemuarm64-armhost": workers_arm,
+    "reproducible-arm": workers_arm,
+    "reproducible-arm-cross": workers_arm,
     "auh" : workers_auh,
     "auh-meta-oe" : workers_auh,
     "metrics": workers_centos + workers_debian + workers_opensuse,