public inbox for buildbot@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Add ibm power 8, 9 and 10 workers
@ 2022-07-06 20:20 Mark Wielaard
  0 siblings, 0 replies; only message in thread
From: Mark Wielaard @ 2022-07-06 20:20 UTC (permalink / raw)
  To: buildbot; +Cc: will schmidt, Carl Love, Mark Wielaard

Just the definition of the workers, not yet hooked up to builders.
Added samples to buildbot.config.sample.
---
 buildbot.config.sample |  3 +++
 builder/master.cfg     | 24 ++++++++++++++++++++++++
 htdocs/index.html.post |  1 +
 3 files changed, 28 insertions(+)

diff --git a/buildbot.config.sample b/buildbot.config.sample
index deba731..8cd1b21 100644
--- a/buildbot.config.sample
+++ b/buildbot.config.sample
@@ -13,6 +13,9 @@ fedora-s390x=frob
 fedora-ppc64le=frob
 debian-ppc64=frob
 fedrawhide-x86_64=frob
+ibm_power8=frob
+ibm_power9=frob
+ibm_power10=frob
 
 # Users
 bb_admin=frob
diff --git a/builder/master.cfg b/builder/master.cfg
index 19e8d1b..d589db8 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -167,6 +167,30 @@ c['workers'].append(bb3_worker)
 
 vm_workers = ['bb1', 'bb2', 'bb3']
 
+ibm_power8_worker = worker.Worker("ibm_power8",
+                                  getpw("ibm_power8"),
+                                  max_builds=2,
+                                  properties={'ncpus': 8, 'maxcpus': 16},
+                                  notify_on_missing=['will_schmidt@vnet.ibm.com',
+                                                     'cel@us.ibm.com']);
+c['workers'].append(ibm_power8_worker)
+
+ibm_power9_worker = worker.Worker("ibm_power9",
+                                  getpw("ibm_power9"),
+                                  max_builds=2,
+                                  properties={'ncpus': 4, 'maxcpus': 8},
+                                  notify_on_missing=['will_schmidt@vnet.ibm.com',
+                                                     'cel@us.ibm.com']);
+c['workers'].append(ibm_power9_worker)
+
+ibm_power10_worker = worker.Worker("ibm_power10",
+                                   getpw("ibm_power10"),
+                                   max_builds=5,
+                                   properties={'ncpus': 16, 'maxcpus': 32},
+                                   notify_on_missing=['will_schmidt@vnet.ibm.com',
+                                                      'cel@us.ibm.com']);
+c['workers'].append(ibm_power10_worker)
+
 # 'protocols' contains information about protocols which master will use for
 # communicating with workers. You must define at least 'port' option that workers
 # could connect to your master with this protocol.
diff --git a/htdocs/index.html.post b/htdocs/index.html.post
index 84d21c1..de93f63 100644
--- a/htdocs/index.html.post
+++ b/htdocs/index.html.post
@@ -10,6 +10,7 @@
 	<li>Mark Wielaard for the centos-x86_64, debian-i386,
 	  debian-arm64 and debian-armhf workers</li>
 	<li>Frank Eigler for the fedrawhide-x86_64 worker</li>
+	<li>IBM for the ibm_power8, ibm_power9 and ibm_power10 workers</li>
       </ul>
     </p>
   </body>
-- 
2.30.2


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

only message in thread, other threads:[~2022-07-06 20:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-06 20:20 [PATCH] Add ibm power 8, 9 and 10 workers 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).