diff mbox series

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

Message ID 20260729170737.3034315-1-richard.purdie@linuxfoundation.org
State New
Headers show
Series [yocto-autobuilder2,1/2] config: Add reproducible-arm, reproducible-cross and reproducible-arm-cross builders | expand

Commit Message

Richard Purdie July 29, 2026, 5:07 p.m. UTC
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 <richard.purdie@linuxfoundation.org>
---
 config.py | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

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,