public inbox for buildbot@sourceware.org
 help / color / mirror / Atom feed
* Arm builders going offline temporarily
@ 2022-11-02 13:29 Luis Machado
  2022-11-15 12:21 ` Mark Wielaard
  0 siblings, 1 reply; 5+ messages in thread
From: Luis Machado @ 2022-11-02 13:29 UTC (permalink / raw)
  To: buildbot

Hi,

Our arm64 server is going down for maintenance/moving on Nov 13st through the week afterwards.

I think it would be nice to disable it in the buildbot server so we don't keep generating errors
whilst it is offline. Is there a way we can do that?

We'll let you know once the machine comes back.

Thanks,
Luis
IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Arm builders going offline temporarily
  2022-11-02 13:29 Arm builders going offline temporarily Luis Machado
@ 2022-11-15 12:21 ` Mark Wielaard
  2022-11-15 12:24   ` Luis Machado
  0 siblings, 1 reply; 5+ messages in thread
From: Mark Wielaard @ 2022-11-15 12:21 UTC (permalink / raw)
  To: Luis Machado, buildbot

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

Hi Luis,

On Wed, 2022-11-02 at 13:29 +0000, Luis Machado wrote:
> Our arm64 server is going down for maintenance/moving on Nov 13st
> through the week afterwards.
> 
> I think it would be nice to disable it in the buildbot server so we
> don't keep generating errors
> whilst it is offline. Is there a way we can do that?

I have applied the attached patch. We just revert that once it comes
online again.

Cheers,

Mark

[-- Attachment #2: 0001-Arm-builders-going-offline-temporarily.patch --]
[-- Type: text/x-patch, Size: 11313 bytes --]

From d22b9955b4b4d23aa563e437b3b766d8f005b003 Mon Sep 17 00:00:00 2001
From: Mark Wielaard <mark@klomp.org>
Date: Tue, 15 Nov 2022 13:15:03 +0100
Subject: [PATCH] Arm builders going offline temporarily

This disables the arm64-ubuntu20_04, arm64-ubuntu22_04,
armhf-ubuntu20_04, armhf-ubuntu22_04, ubuntu22_04-armhf and
ubuntu22_04-arm64 workers and associated builders while the
server is in maintenance.
---
 builder/master.cfg | 184 +++++++++++++++++++++++----------------------
 1 file changed, 93 insertions(+), 91 deletions(-)

diff --git a/builder/master.cfg b/builder/master.cfg
index a2d0ab1..072b7d0 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -243,50 +243,51 @@ 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)
+# Currently (November 13 2022) down for maintenance
+#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",
@@ -757,10 +758,10 @@ gdb_scheduler = schedulers.SingleBranchScheduler(
                       "gdb-debian-testing-x86_64",
                       "gdb-debian-armhf",
                       "gdb-fedora-arm64",
-                      "gdb-arm64-ubuntu20_04",
-                      "gdb-arm64-ubuntu22_04",
-                      "gdb-armhf-ubuntu20_04",
-                      "gdb-armhf-ubuntu22_04",
+#                      "gdb-arm64-ubuntu20_04",
+#                      "gdb-arm64-ubuntu22_04",
+#                      "gdb-armhf-ubuntu20_04",
+#                      "gdb-armhf-ubuntu22_04",
                       "gdb-debian-i386",
 #                      "gdb-ibm-power8",
                       "gdb-ibm-power9",
@@ -808,8 +809,9 @@ 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-ubuntu-armhf",
+#                      "gcc-full-ubuntu-arm64"
+                     ])
 c['schedulers'].append(gcc_scheduler)
 
 systemtap_scheduler = schedulers.SingleBranchScheduler(
@@ -2729,33 +2731,33 @@ 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_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_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)
+# 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
@@ -3045,21 +3047,21 @@ 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_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)
 
 
 # glibc build steps, factory, builders
-- 
2.18.4


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Arm builders going offline temporarily
  2022-11-15 12:21 ` Mark Wielaard
@ 2022-11-15 12:24   ` Luis Machado
  2022-11-21 12:29     ` Christophe Lyon
  0 siblings, 1 reply; 5+ messages in thread
From: Luis Machado @ 2022-11-15 12:24 UTC (permalink / raw)
  To: Mark Wielaard, buildbot

On 11/15/22 12:21, Mark Wielaard wrote:
> Hi Luis,
>
> On Wed, 2022-11-02 at 13:29 +0000, Luis Machado wrote:
>> Our arm64 server is going down for maintenance/moving on Nov 13st
>> through the week afterwards.
>>
>> I think it would be nice to disable it in the buildbot server so we
>> don't keep generating errors
>> whilst it is offline. Is there a way we can do that?
>
> I have applied the attached patch. We just revert that once it comes
> online again.
>
> Cheers,
>
> Mark

Great. Thanks Mark. I'll let you know once they come back to life.

Regards,
Luis
IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Arm builders going offline temporarily
  2022-11-15 12:24   ` Luis Machado
@ 2022-11-21 12:29     ` Christophe Lyon
  2022-11-21 12:36       ` Mark Wielaard
  0 siblings, 1 reply; 5+ messages in thread
From: Christophe Lyon @ 2022-11-21 12:29 UTC (permalink / raw)
  To: Luis Machado, Mark Wielaard, buildbot



On 11/15/22 13:24, Luis Machado wrote:
> On 11/15/22 12:21, Mark Wielaard wrote:
>> Hi Luis,
>>
>> On Wed, 2022-11-02 at 13:29 +0000, Luis Machado wrote:
>>> Our arm64 server is going down for maintenance/moving on Nov 13st
>>> through the week afterwards.
>>>
>>> I think it would be nice to disable it in the buildbot server so we
>>> don't keep generating errors
>>> whilst it is offline. Is there a way we can do that?
>>
>> I have applied the attached patch. We just revert that once it comes
>> online again.
>>
>> Cheers,
>>
>> Mark
>
> Great. Thanks Mark. I'll let you know once they come back to life.

Hi Mark,

I have restarted the containers, so you can revert your patch.

Thanks,

Christophe

>
> Regards,
> Luis
> IMPORTANT NOTICE: The contents of this email and any attachments are
> confidential and may also be privileged. If you are not the intended
> recipient, please notify the sender immediately and do not disclose the
> contents to any other person, use it for any purpose, or store or copy
> the information in any medium. Thank you.
IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Arm builders going offline temporarily
  2022-11-21 12:29     ` Christophe Lyon
@ 2022-11-21 12:36       ` Mark Wielaard
  0 siblings, 0 replies; 5+ messages in thread
From: Mark Wielaard @ 2022-11-21 12:36 UTC (permalink / raw)
  To: Christophe Lyon, Luis Machado, buildbot

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

Hi Christophe,

On Mon, 2022-11-21 at 13:29 +0100, Christophe Lyon wrote:
> I have restarted the containers, so you can revert your patch.

Reverted, the workers seem to be attached again and should resume new
builds shortly.

Thanks,

Mark

[-- Attachment #2: 0001-Revert-Arm-builders-going-offline-temporarily.patch --]
[-- Type: text/x-patch, Size: 11183 bytes --]

From 686e29c7226d48f3d351b4225672faa2fe090cde Mon Sep 17 00:00:00 2001
From: Mark Wielaard <mark@klomp.org>
Date: Mon, 21 Nov 2022 13:32:52 +0100
Subject: [PATCH] Revert "Arm builders going offline temporarily"

This reverts commit d22b9955b4b4d23aa563e437b3b766d8f005b003.
---
 builder/master.cfg | 186 ++++++++++++++++++++++-----------------------
 1 file changed, 92 insertions(+), 94 deletions(-)

diff --git a/builder/master.cfg b/builder/master.cfg
index 2bc46ef..61bf4f1 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -243,51 +243,50 @@ c['workers'].append(ibm_power10_worker)
 
 # Various arm64/armhf workers provided by the Works on Arm initiative
 # 4 used for gdb
-# Currently (November 13 2022) down for maintenance
-#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)
+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",
@@ -758,10 +757,10 @@ gdb_scheduler = schedulers.SingleBranchScheduler(
                       "gdb-debian-testing-x86_64",
                       "gdb-debian-armhf",
                       "gdb-fedora-arm64",
-#                      "gdb-arm64-ubuntu20_04",
-#                      "gdb-arm64-ubuntu22_04",
-#                      "gdb-armhf-ubuntu20_04",
-#                      "gdb-armhf-ubuntu22_04",
+                      "gdb-arm64-ubuntu20_04",
+                      "gdb-arm64-ubuntu22_04",
+                      "gdb-armhf-ubuntu20_04",
+                      "gdb-armhf-ubuntu22_04",
                       "gdb-debian-i386",
                       "gdb-ibm-power8",
                       "gdb-ibm-power9",
@@ -809,9 +808,8 @@ 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-ubuntu-armhf",
+                      "gcc-full-ubuntu-arm64"])
 c['schedulers'].append(gcc_scheduler)
 
 systemtap_scheduler = schedulers.SingleBranchScheduler(
@@ -2731,33 +2729,33 @@ 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)
+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
@@ -3047,21 +3045,21 @@ 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_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)
 
 
 # glibc build steps, factory, builders
-- 
2.18.4


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-11-21 12:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-02 13:29 Arm builders going offline temporarily Luis Machado
2022-11-15 12:21 ` Mark Wielaard
2022-11-15 12:24   ` Luis Machado
2022-11-21 12:29     ` Christophe Lyon
2022-11-21 12:36       ` 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).