public inbox for buildbot@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Add gentoo-sparc-big worker using 32/64 cores.
@ 2023-01-29 14:08 Mark Wielaard
  0 siblings, 0 replies; only message in thread
From: Mark Wielaard @ 2023-01-29 14:08 UTC (permalink / raw)
  To: buildbot; +Cc: Sam James, Mark Wielaard

---
 buildbot.config.sample |  1 +
 builder/master.cfg     | 11 +++++++++++
 2 files changed, 12 insertions(+)

diff --git a/buildbot.config.sample b/buildbot.config.sample
index 80ed109..d61fb56 100644
--- a/buildbot.config.sample
+++ b/buildbot.config.sample
@@ -24,6 +24,7 @@ ubuntu22_04-arm64=frob
 ubuntu22_04-armhf=frob
 fedora-arm64=frob
 gentoo-sparc=frob
+gentoo-sparc-big=frob
 
 # Users
 bb_admin=frob
diff --git a/builder/master.cfg b/builder/master.cfg
index 6528fd5..82b9921 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -131,6 +131,10 @@ fedrawhide_x86_64_worker = worker.Worker("fedrawhide-x86_64",
                                     notify_on_missing=['fche@elastic.org']);
 c['workers'].append(fedrawhide_x86_64_worker)
 
+# 2 gentoo sparc workers, running on the same machine in different
+# containers. The big one does only one build at a time. Larger builds
+# are only put on the big worker to not hold up quicker/smaller builds.
+# Smaller builds can be done on either worker.
 gentoo_sparc_worker = worker.Worker("gentoo-sparc",
                                     getpw("gentoo-sparc"),
                                     max_builds=3,
@@ -138,6 +142,13 @@ gentoo_sparc_worker = worker.Worker("gentoo-sparc",
                                     notify_on_missing=['sam@gentoo.org']);
 c['workers'].append(gentoo_sparc_worker)
 
+gentoo_sparc_big_worker = worker.Worker("gentoo-sparc-big",
+                                    getpw("gentoo-sparc-big"),
+                                    max_builds=3,
+                                    properties={'ncpus': 32, 'maxcpus': 64},
+                                    notify_on_missing=['sam@gentoo.org']);
+c['workers'].append(gentoo_sparc_big_worker)
+
 
 # 3 (Fedora Core) VMs which can run container files
 # 2 can do simultanious builds, and so have 2 latent workers with different
-- 
2.31.1


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-01-29 14:09 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-29 14:08 [PATCH] Add gentoo-sparc-big worker using 32/64 cores Mark Wielaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).