public inbox for buildbot@sourceware.org
 help / color / mirror / Atom feed
From: Mark Wielaard <mark@klomp.org>
To: buildbot@sourceware.org
Cc: Mark Wielaard <mark@klomp.org>
Subject: [PATCH 1/2] Add 4 VisionFive V2 boards, donated by StarFive
Date: Wed, 31 Jan 2024 21:40:49 +0100	[thread overview]
Message-ID: <20240131204050.992219-1-mark@klomp.org> (raw)

---
 buildbot.config.sample |  4 +++
 builder/master.cfg     | 58 ++++++++++++++++++++++++++++++++++--------
 2 files changed, 51 insertions(+), 11 deletions(-)

diff --git a/buildbot.config.sample b/buildbot.config.sample
index 68175ba..c2b9432 100644
--- a/buildbot.config.sample
+++ b/buildbot.config.sample
@@ -28,6 +28,10 @@ gentoo-sparc=frob
 gentoo-sparc-big=frob
 osuosl-debian-arm64=frob
 starfive-riscv=frob
+starfive-1=frob
+starfive-2=frob
+starfive-3=frob
+starfive-4=frob
 
 # Users
 bb_admin=frob
diff --git a/builder/master.cfg b/builder/master.cfg
index 4691e9c..c107343 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -107,6 +107,42 @@ starfive_riscv_worker = worker.Worker("starfive-riscv",
                                     notify_on_missing='mark@klomp.org');
 c['workers'].append(starfive_riscv_worker)
 
+# 4 VisionFive V2 boards, donated by StarFive, 8GB memory, 4 cores
+starfive_1_worker = worker.Worker("starfive-1",
+                                  getpw("starfive-1"),
+                                  max_builds=1,
+                                  properties={'ncpus': 4, 'maxcpus': 4},
+                                  keepalive_interval=900,
+                                  notify_on_missing='mark@klomp.org');
+c['workers'].append(starfive_1_worker)
+starfive_2_worker = worker.Worker("starfive-2",
+                                  getpw("starfive-2"),
+                                  max_builds=1,
+                                  properties={'ncpus': 4, 'maxcpus': 4},
+                                  keepalive_interval=900,
+                                  notify_on_missing='mark@klomp.org');
+c['workers'].append(starfive_2_worker)
+starfive_3_worker = worker.Worker("starfive-3",
+                                  getpw("starfive-3"),
+                                  max_builds=1,
+                                  properties={'ncpus': 4, 'maxcpus': 4},
+                                  keepalive_interval=900,
+                                  notify_on_missing='mark@klomp.org');
+c['workers'].append(starfive_3_worker)
+starfive_4_worker = worker.Worker("starfive-4",
+                                  getpw("starfive-4"),
+                                  max_builds=1,
+                                  properties={'ncpus': 4, 'maxcpus': 4},
+                                  keepalive_interval=900,
+                                  notify_on_missing='mark@klomp.org');
+c['workers'].append(starfive_4_worker)
+
+starfive_workers = ['starfive-riscv',
+                    'starfive-1',
+                    'starfive-2',
+                    'starfive-3',
+                    'starfive-4']
+
 # s390x VM hosted by Marist university, running under mark user account
 fedora_s390x_worker = worker.Worker("fedora-s390x",
                                     getpw("fedora-s390x"),
@@ -1484,7 +1520,7 @@ c['builders'].append(bzip2_fedora_ppc64le_builder)
 
 bzip2_ubuntu_riscv_builder = util.BuilderConfig(
         name="bzip2-ubuntu-riscv",
-        workernames=["starfive-riscv"],
+        workernames=starfive_workers,
         tags=["bzip2", "ubuntu", "riscv"],
         collapseRequests=True,
         factory=bzip2_factory_no_valgrind)
@@ -1632,7 +1668,7 @@ c['builders'].append(debugedit_fedora_ppc64le_builder)
 
 debugedit_ubuntu_riscv_builder = util.BuilderConfig(
         name="debugedit-ubuntu-riscv",
-        workernames=["starfive-riscv"],
+        workernames=starfive_workers,
         tags=["debugedit", "ubuntu", "riscv"],
         collapseRequests=True,
         factory=debugedit_factory)
@@ -1778,7 +1814,7 @@ c['builders'].append(dwz_debian_ppc64_builder)
 
 dwz_ubuntu_riscv_builder = util.BuilderConfig(
         name="dwz-ubuntu-riscv",
-        workernames=["starfive-riscv"],
+        workernames=starfive_workers,
         tags=["dwz", "ubuntu", "riscv"],
         collapseRequests=True,
         factory=dwz_factory)
@@ -2235,7 +2271,7 @@ c['builders'].append(elfutils_try_fedora_ppc64le_builder)
 
 elfutils_ubuntu_riscv_builder = util.BuilderConfig(
         name="elfutils-ubuntu-riscv",
-        workernames=["starfive-riscv"],
+        workernames=starfive_workers,
         tags=["elfutils", "ubuntu", "riscv"],
         collapseRequests=True,
         factory=elfutils_factory)
@@ -2244,7 +2280,7 @@ c['builders'].append(elfutils_ubuntu_riscv_builder)
 elfutils_try_ubuntu_riscv_builder = util.BuilderConfig(
         name="elfutils-try-ubuntu-riscv",
         collapseRequests=True,
-        workernames=["starfive-riscv"],
+        workernames=starfive_workers,
         tags=["elfutils-try", "ubuntu", "riscv"],
         factory=elfutils_factory)
 c['builders'].append(elfutils_try_ubuntu_riscv_builder)
@@ -2843,7 +2879,7 @@ c['builders'].append(binutils_try_fedora_ppc64le_builder)
 
 binutils_ubuntu_riscv_builder = util.BuilderConfig(
 	name="binutils-ubuntu-riscv",
-        workernames=["starfive-riscv"],
+        workernames=starfive_workers,
         tags=["binutils", "ubuntu", "riscv"],
         collapseRequests=True,
         factory=binutils_factory_gas_binutils)
@@ -2852,7 +2888,7 @@ c['builders'].append(binutils_ubuntu_riscv_builder)
 binutils_try_ubuntu_riscv_builder = util.BuilderConfig(
 	name="binutils-try-ubuntu-riscv",
         collapseRequests=True,
-        workernames=["starfive-riscv"],
+        workernames=starfive_workers,
         tags=["binutils-try", "ubuntu", "riscv"],
         factory=binutils_factory_gas_binutils)
 c['builders'].append(binutils_try_ubuntu_riscv_builder)
@@ -4103,7 +4139,7 @@ c['builders'].append(libabigail_try_fedora_ppc64le_builder)
 
 libabigail_ubuntu_riscv_builder = util.BuilderConfig(
         name="libabigail-ubuntu-riscv",
-        workernames=["starfive-riscv"],
+        workernames=starfive_workers,
         tags=["libabigail", "ubuntu", "riscv"],
         collapseRequests=True,
         factory=libabigail_factory_checkonly)
@@ -4112,7 +4148,7 @@ c['builders'].append(libabigail_ubuntu_riscv_builder)
 libabigail_try_ubuntu_riscv_builder = util.BuilderConfig(
         name="libabigail-try-ubuntu-riscv",
         collapseRequests=True,
-        workernames=["starfive-riscv"],
+        workernames=starfive_workers,
         tags=["libabigail-try", "ubuntu", "riscv"],
         factory=libabigail_factory_checkonly)
 c['builders'].append(libabigail_try_ubuntu_riscv_builder)
@@ -4610,7 +4646,7 @@ c['builders'].append(gnupoke_gentoo_space_builder)
 gnupoke_ubuntu_riscv_builder = util.BuilderConfig(
         name="gnupoke-ubuntu-riscv",
         tags=["gnupoke", "ubuntu", "riscv"],
-        workernames="starfive-riscv",
+        workernames=starfive_workers,
         collapseRequests=True,
         factory=gnupoke_factory)
 c['builders'].append(gnupoke_ubuntu_riscv_builder)
@@ -4698,7 +4734,7 @@ c['builders'].append(annobin_debian_i386_builder)
 
 annobin_ubuntu_riscv_builder = util.BuilderConfig(
         name="annobin-ubuntu-riscv",
-        workernames=["starfive-riscv"],
+        workernames=starfive_workers,
         tags=["annobin", "ubuntu", "riscv"],
         collapseRequests=True,
         factory=annobin_factory)
-- 
2.39.3


             reply	other threads:[~2024-01-31 20:41 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-31 20:40 Mark Wielaard [this message]
2024-01-31 20:40 ` [PATCH 2/2] Add Starfive to Thanks Mark Wielaard

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=20240131204050.992219-1-mark@klomp.org \
    --to=mark@klomp.org \
    --cc=buildbot@sourceware.org \
    /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).