From ef85702d57491dc0eebcc697bccb90184585c286 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Wed, 30 Apr 2025 17:02:40 +0100 Subject: [PATCH 1/4] Add worker as unstable tier 3 with initial values. --- master/custom/builders.py | 2 ++ master/custom/workers.py | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/master/custom/builders.py b/master/custom/builders.py index f0615e88..3dd7add9 100644 --- a/master/custom/builders.py +++ b/master/custom/builders.py @@ -300,6 +300,8 @@ # FreBSD x86-64 clang # FreeBSD 15 is CURRENT: development branch (at 2023-10-17) ("AMD64 FreeBSD15", "opsec-fbsd15", UnixBuild), + + ("ARM Raspbian", "stan-raspbian", UnixBuild), ] diff --git a/master/custom/workers.py b/master/custom/workers.py index d8433e8f..8b1b0fdd 100644 --- a/master/custom/workers.py +++ b/master/custom/workers.py @@ -183,6 +183,11 @@ def get_workers(settings): # Raspbian Debian bullseye ships with 3.9, bookworm with 3.11. not_branches=['3.7', '3.8'], ), + cpw( + name="stan-raspbian", + tags=['linux', 'unix', 'raspbian', 'debian', 'armv6', 'armv7l', + 'aarch64', 'arm'], + ), cpw( name="kulikjak-solaris-sparcv9", tags=['solaris', 'unix', 'sparc', 'sparcv9'], From 66b91df24f19f3caae23039f7cd73091e3274885 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Wed, 30 Apr 2025 17:57:38 +0100 Subject: [PATCH 2/4] Rename --- master/custom/builders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/master/custom/builders.py b/master/custom/builders.py index 3dd7add9..a7de210f 100644 --- a/master/custom/builders.py +++ b/master/custom/builders.py @@ -301,7 +301,7 @@ # FreeBSD 15 is CURRENT: development branch (at 2023-10-17) ("AMD64 FreeBSD15", "opsec-fbsd15", UnixBuild), - ("ARM Raspbian", "stan-raspbian", UnixBuild), + ("ARM Raspbian aarch64", "stan-raspbian", UnixBuild), ] From 7e451563dadcbd7d8f6ed61cc05fde30fff61894 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Wed, 30 Apr 2025 20:27:35 +0100 Subject: [PATCH 3/4] Update tags with armv8 --- master/custom/workers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/master/custom/workers.py b/master/custom/workers.py index 8b1b0fdd..4228afbf 100644 --- a/master/custom/workers.py +++ b/master/custom/workers.py @@ -185,7 +185,7 @@ def get_workers(settings): ), cpw( name="stan-raspbian", - tags=['linux', 'unix', 'raspbian', 'debian', 'armv6', 'armv7l', + tags=['linux', 'unix', 'raspbian', 'debian', 'armv8', 'aarch64', 'arm'], ), cpw( From 6a36527e1865c3c32a9785ae144b981d38003af7 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Wed, 30 Apr 2025 21:01:13 +0100 Subject: [PATCH 4/4] Update master/custom/builders.py Co-authored-by: Zachary Ware --- master/custom/builders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/master/custom/builders.py b/master/custom/builders.py index a7de210f..50acf533 100644 --- a/master/custom/builders.py +++ b/master/custom/builders.py @@ -301,7 +301,7 @@ # FreeBSD 15 is CURRENT: development branch (at 2023-10-17) ("AMD64 FreeBSD15", "opsec-fbsd15", UnixBuild), - ("ARM Raspbian aarch64", "stan-raspbian", UnixBuild), + ("ARM64 Raspbian", "stan-raspbian", UnixBuild), ]