public inbox for buildbot@sourceware.org
 help / color / mirror / Atom feed
From: Mark Wielaard <mark@klomp.org>
To: buildbot@sourceware.org
Cc: will schmidt <will_schmidt@vnet.ibm.com>,
	Carl Love <cel@us.ibm.com>, Mark Wielaard <mark@klomp.org>
Subject: [PATCH] Add ibm power 8, 9 and 10 workers
Date: Wed,  6 Jul 2022 22:20:36 +0200	[thread overview]
Message-ID: <20220706202036.22090-1-mark@klomp.org> (raw)

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


                 reply	other threads:[~2022-07-06 20:20 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220706202036.22090-1-mark@klomp.org \
    --to=mark@klomp.org \
    --cc=buildbot@sourceware.org \
    --cc=cel@us.ibm.com \
    --cc=will_schmidt@vnet.ibm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).