public inbox for buildbot@sourceware.org
 help / color / mirror / Atom feed
From: Mark Wielaard <mark@klomp.org>
To: Christophe Lyon <christophe.lyon@arm.com>
Cc: buildbot@sourceware.org
Subject: Re: Removing arm/aarch64 binutils and gcc buildbots
Date: Fri, 29 Sep 2023 15:18:44 +0200	[thread overview]
Message-ID: <20230929131844.GF20136@gnu.wildebeest.org> (raw)
In-Reply-To: <4cf636dc-10b5-8a8d-7feb-d5e20770416e@arm.com>

[-- Attachment #1: Type: text/plain, Size: 750 bytes --]

Hi Christophe,

On Fri, Sep 29, 2023 at 11:31:21AM +0200, Christophe Lyon wrote:
> After internal discussions following the CI presentations during the GNU
> Cauldron, we have decided to allocate our arm & aarch64 builder to
> Linaro CI.

Some of the scripts that Maxim wrote for bisecting regressions are
very exciting. I hope we can reuse them eventually.

> In practice, it means we would like to stop the binutils and gcc
> buildbots (expect the gdb one to follow shortly, but it seems to use
> very few resources at the moment, so we can try to keep it a little bit
> more).
> 
> I think you have to update the buildbot master config, before I stop the
> corresponding containers?

I have pushed the attached patch to remove them.

Cheers,

Mark

[-- Attachment #2: 0001-Remove-armhf-arm64-ubuntu20_04-22_04-workers-for-gcc.patch --]
[-- Type: text/plain, Size: 9701 bytes --]

From 8c720f27ab11b4d6700817e3bdb782703a2a6e96 Mon Sep 17 00:00:00 2001
From: Mark Wielaard <mark@klomp.org>
Date: Fri, 29 Sep 2023 15:14:48 +0200
Subject: [PATCH] Remove armhf/arm64 ubuntu20_04/22_04 workers for gcc,
 binutils and gdb.

This removed the arm64-ubuntu22_04, armhf-ubuntu20_04, armhf-ubuntu22_04,
ubuntu22_04-arm64 and ubuntu22_04-armhf workers plus the associated
builders for gcc, binutils and gdb.
---
 builder/master.cfg     | 131 +----------------------------------------
 htdocs/index.html.post |   3 -
 2 files changed, 1 insertion(+), 133 deletions(-)

diff --git a/builder/master.cfg b/builder/master.cfg
index 884a9ea..4ac056a 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -268,53 +268,6 @@ ibm_power10_worker = worker.Worker("ibm_power10",
                                    notify_on_missing=['cel@us.ibm.com']);
 c['workers'].append(ibm_power10_worker)
 
-# Various arm64/armhf workers provided by the Works on Arm initiative
-# 4 used for gdb
-arm64_ubuntu20_04_worker = worker.Worker("arm64-ubuntu20_04",
-                                         getpw("arm64-ubuntu20_04"),
-                                         max_builds=1,
-                                         properties={'ncpus': 4, 'maxcpus': 4},
-                                         notify_on_missing=['christophe.lyon@arm.com']);
-c['workers'].append(arm64_ubuntu20_04_worker)
-
-arm64_ubuntu22_04_worker = worker.Worker("arm64-ubuntu22_04",
-                                         getpw("arm64-ubuntu22_04"),
-                                         max_builds=1,
-                                         properties={'ncpus': 4, 'maxcpus': 4},
-                                         notify_on_missing=['christophe.lyon@arm.com']);
-c['workers'].append(arm64_ubuntu22_04_worker)
-
-armhf_ubuntu20_04_worker = worker.Worker("armhf-ubuntu20_04",
-                                         getpw("armhf-ubuntu20_04"),
-                                         max_builds=1,
-                                         properties={'ncpus': 4, 'maxcpus': 4},
-                                         notify_on_missing=['christophe.lyon@arm.com']);
-c['workers'].append(armhf_ubuntu20_04_worker)
-
-armhf_ubuntu22_04_worker = worker.Worker("armhf-ubuntu22_04",
-                                         getpw("armhf-ubuntu22_04"),
-                                         max_builds=1,
-                                         properties={'ncpus': 4, 'maxcpus': 4},
-                                         notify_on_missing=['christophe.lyon@arm.com']);
-c['workers'].append(armhf_ubuntu22_04_worker)
-
-# 2 used for gcc
-ubuntu20_04_armhf_worker = worker.Worker("ubuntu22_04-armhf",
-                                         getpw("ubuntu22_04-armhf"),
-                                         properties={'ncpus': 20,
-                                                     'maxcpus': 20},
-                                         max_builds=1,
-                                         notify_on_missing=['christophe.lyon@arm.com']);
-c['workers'].append(ubuntu20_04_armhf_worker)
-
-ubuntu20_04_arm64_worker = worker.Worker("ubuntu22_04-arm64",
-                                         getpw("ubuntu22_04-arm64"),
-                                         properties={'ncpus': 20,
-                                                     'maxcpus': 20},
-                                         max_builds=1,
-                                         notify_on_missing=['christophe.lyon@arm.com']);
-c['workers'].append(ubuntu20_04_arm64_worker)
-
 # 8 core arm64 server hosted by osuosl
 fedora_arm64_worker = worker.Worker("fedora-arm64",
                                          getpw("fedora-arm64"),
@@ -832,11 +785,7 @@ binutils_scheduler = schedulers.SingleBranchScheduler(
                       "binutils-debian-i386",
                       "binutils-fedora-ppc64le",
                       "binutils-opensusetw-x86_64",
-                      "binutils-opensuseleap-x86_64",
-                      "binutils-ubuntu20_04-armhf",
-                      "binutils-ubuntu22_04-armhf",
-                      "binutils-ubuntu20_04-arm64",
-                      "binutils-ubuntu22_04-arm64"])
+                      "binutils-opensuseleap-x86_64"])
 c['schedulers'].append(binutils_scheduler)
 
 binutils_try_scheduler = schedulers.AnyBranchScheduler(
@@ -901,10 +850,6 @@ gdb_scheduler = schedulers.SingleBranchScheduler(
                       "gdb-debian-armhf",
                       "gdb-fedora-arm64",
                       "gdb-gentoo-sparc",
-                      "gdb-arm64-ubuntu20_04",
-                      "gdb-arm64-ubuntu22_04",
-                      "gdb-armhf-ubuntu20_04",
-                      "gdb-armhf-ubuntu22_04",
                       "gdb-debian-i386",
                       "gdb-ibm-power9",
                       "gdb-ibm-power10",
@@ -953,8 +898,6 @@ gcc_scheduler = schedulers.SingleBranchScheduler(
         reason="gcc project master branch update",
         builderNames=["gcc-fedrawhide-x86_64",
                       "gcc-full-debian-amd64",
-                      "gcc-full-ubuntu-armhf",
-                      "gcc-full-ubuntu-arm64",
                       "gcc-full-gentoo-sparc"])
 c['schedulers'].append(gcc_scheduler)
 
@@ -2767,34 +2710,6 @@ binutils_opensuseleap_x86_64_builder = util.BuilderConfig(
         factory=binutils_factory)
 c['builders'].append(binutils_opensuseleap_x86_64_builder)
 
-binutils_ubuntu20_04_armhf_builder = util.BuilderConfig(
-	name="binutils-ubuntu20_04-armhf",
-        workernames=["armhf-ubuntu20_04"],
-        tags=["binutils", "armhf", "ubuntu"],
-        factory=binutils_factory)
-c['builders'].append(binutils_ubuntu20_04_armhf_builder)
-
-binutils_ubuntu22_04_armhf_builder = util.BuilderConfig(
-	name="binutils-ubuntu22_04-armhf",
-        workernames=["armhf-ubuntu22_04"],
-        tags=["binutils", "armhf", "ubuntu"],
-        factory=binutils_factory)
-c['builders'].append(binutils_ubuntu22_04_armhf_builder)
-
-binutils_ubuntu20_04_arm64_builder = util.BuilderConfig(
-	name="binutils-ubuntu20_04-arm64",
-        workernames=["arm64-ubuntu20_04"],
-        tags=["binutils", "arm64", "ubuntu"],
-        factory=binutils_factory)
-c['builders'].append(binutils_ubuntu20_04_arm64_builder)
-
-binutils_ubuntu22_04_arm64_builder = util.BuilderConfig(
-	name="binutils-ubuntu22_04-arm64",
-        workernames=["arm64-ubuntu22_04"],
-        tags=["binutils", "arm64", "ubuntu"],
-        factory=binutils_factory)
-c['builders'].append(binutils_ubuntu22_04_arm64_builder)
-
 binutils_rawhide_x86_64_builder = util.BuilderConfig(
 	name="binutils-rawhide-x86_64",
 	properties={'container-file':
@@ -3235,34 +3150,6 @@ gdb_ibm_power10_builder = util.BuilderConfig(
         factory=gdb_factory)
 c['builders'].append(gdb_ibm_power10_builder)
 
-gdb_arm64_ubuntu20_04_builder = util.BuilderConfig(
-	name="gdb-arm64-ubuntu20_04",
-        workernames=["arm64-ubuntu20_04"],
-        tags=["gdb", "arm64", "ubuntu"],
-        factory=gdb_factory)
-c['builders'].append(gdb_arm64_ubuntu20_04_builder)
-
-gdb_arm64_ubuntu22_04_builder = util.BuilderConfig(
-	name="gdb-arm64-ubuntu22_04",
-        workernames=["arm64-ubuntu22_04"],
-        tags=["gdb", "arm64", "ubuntu"],
-        factory=gdb_factory)
-c['builders'].append(gdb_arm64_ubuntu22_04_builder)
-
-gdb_armhf_ubuntu20_04_builder = util.BuilderConfig(
-	name="gdb-armhf-ubuntu20_04",
-        workernames=["armhf-ubuntu20_04"],
-        tags=["gdb", "armhf", "ubuntu"],
-        factory=gdb_32_factory)
-c['builders'].append(gdb_armhf_ubuntu20_04_builder)
-
-gdb_armhf_ubuntu22_04_builder = util.BuilderConfig(
-	name="gdb-armhf-ubuntu22_04",
-        workernames=["armhf-ubuntu22_04"],
-        tags=["gdb", "armhf", "ubuntu"],
-        factory=gdb_32_factory)
-c['builders'].append(gdb_armhf_ubuntu22_04_builder)
-
 # binutils-gdb build steps, factory and builders
 # just a native build
 
@@ -3628,22 +3515,6 @@ gcc_full_debian_amd64_builder = util.BuilderConfig(
         factory=gcc_full_build_factory_gen())
 c['builders'].append(gcc_full_debian_amd64_builder)
 
-gcc_full_ubuntu_armhf_builder = util.BuilderConfig(
-        name="gcc-full-ubuntu-armhf",
-        collapseRequests=True,
-        workernames=["ubuntu22_04-armhf"],
-        tags=["gcc-full", "ubuntu", "armhf"],
-        factory=gcc_full_build_factory_gen())
-c['builders'].append(gcc_full_ubuntu_armhf_builder)
-
-gcc_full_ubuntu_arm64_builder = util.BuilderConfig(
-        name="gcc-full-ubuntu-arm64",
-        collapseRequests=True,
-        workernames=["ubuntu22_04-arm64"],
-        tags=["gcc-full", "ubuntu", "arm64"],
-        factory=gcc_full_build_factory_gen())
-c['builders'].append(gcc_full_ubuntu_arm64_builder)
-
 gcc_full_gentoo_sparc_builder = util.BuilderConfig(
         name="gcc-full-gentoo-sparc",
         collapseRequests=True,
diff --git a/htdocs/index.html.post b/htdocs/index.html.post
index fa9339a..a578713 100644
--- a/htdocs/index.html.post
+++ b/htdocs/index.html.post
@@ -11,9 +11,6 @@
 	  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>
-	<li>The Works on Arm initiative for the arm64-ubuntu20_04,
-            arm64-ubuntu22_04, armhf-ubuntu20_04, armhf-ubuntu22_04
-            ubuntu22_04-arm64 and ubuntu22_04-armhf workers</li>
 	<li>OSUOSL for the x86_64 bbo1 and fedora-arm64 workers</li>
 	<li>OSUOSL for hosting the <a href="https://snapshots.sourceware.org/">snapshots server</a></li>        
 	<li>Gentoo Foundation and OSUOSL for the gentoo-sparc worker</li>
-- 
2.39.3


  reply	other threads:[~2023-09-29 13:18 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-29  9:31 Christophe Lyon
2023-09-29 13:18 ` Mark Wielaard [this message]
2023-10-02  7:56   ` Christophe Lyon

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=20230929131844.GF20136@gnu.wildebeest.org \
    --to=mark@klomp.org \
    --cc=buildbot@sourceware.org \
    --cc=christophe.lyon@arm.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).