public inbox for buildbot@sourceware.org
 help / color / mirror / Atom feed
* Re: The 2.40 branch has been created
       [not found]       ` <2351b01b-ace6-3028-ece5-0f47caf21950@arm.com>
@ 2023-01-04  0:35         ` Mark Wielaard
  2023-01-04 10:31           ` Christophe Lyon
  0 siblings, 1 reply; 3+ messages in thread
From: Mark Wielaard @ 2023-01-04  0:35 UTC (permalink / raw)
  To: Christophe Lyon; +Cc: Matthias Klose, Nick Clifton, binutils, buildbot

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

Hi Christophe,

On Tue, Jan 03, 2023 at 06:29:30PM +0100, Christophe Lyon wrote:
> Actually we have:
> armhf-ubuntu20_04 and armhf-ubuntu22_04 to build GDB and
> ubuntu22_04-armhf to build GCC
> 
> The containers we use to build GDB have less cores than the ones we
> use for GCC. If we add binutils builders on the same workers as GDB,
> will they cooperate nicely (as in "do not compete for CPU", ie. be
> scheduled at different times)?
> 
> If yes, maybe it makes sense to add binutils builders to:
> armhf-ubuntu20_04
> armhf-ubuntu22_04
> arm64-ubuntu20_04
> arm64-ubuntu22_04
> 
> WDYT?

That makes sense. Yes, they will cooperate nicely because the workers
all have max_builds=1. So if there are multiple builds that could use
the same worker they will just wait in the pending queue.

I'll push the following to try the new builders.

Thanks,

Mark

[-- Attachment #2: 0001-Add-binutils-ubuntu20_04-and-ubuntu22_04-armhf-and-a.patch --]
[-- Type: text/plain, Size: 2566 bytes --]

From e125fa6b21d87c8bb39649299762cdfbafe0282e Mon Sep 17 00:00:00 2001
From: Mark Wielaard <mark@klomp.org>
Date: Wed, 4 Jan 2023 01:16:18 +0100
Subject: [PATCH] Add binutils ubuntu20_04 and ubuntu22_04 armhf and arm64
 builders

---
 builder/master.cfg | 34 +++++++++++++++++++++++++++++++++-
 1 file changed, 33 insertions(+), 1 deletion(-)

diff --git a/builder/master.cfg b/builder/master.cfg
index 8a66ae8..b16bb29 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -702,7 +702,11 @@ binutils_scheduler = schedulers.SingleBranchScheduler(
                       "binutils-debian-i386",
                       "binutils-fedora-ppc64le",
                       "binutils-opensusetw-x86_64",
-                      "binutils-opensuseleap-x86_64"])
+                      "binutils-opensuseleap-x86_64",
+                      "binutils-ubuntu20_04-armhf",
+                      "binutils-ubuntu22_04-armhf",
+                      "binutils-ubuntu20_04-arm64",
+                      "binutils-ubuntu22_04-arm64"])
 c['schedulers'].append(binutils_scheduler)
 
 binutils_try_scheduler = schedulers.AnyBranchScheduler(
@@ -2331,6 +2335,34 @@ 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':
-- 
2.31.1


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

* Re: The 2.40 branch has been created
  2023-01-04  0:35         ` The 2.40 branch has been created Mark Wielaard
@ 2023-01-04 10:31           ` Christophe Lyon
  2023-01-04 11:07             ` Mark Wielaard
  0 siblings, 1 reply; 3+ messages in thread
From: Christophe Lyon @ 2023-01-04 10:31 UTC (permalink / raw)
  To: Mark Wielaard; +Cc: Matthias Klose, Nick Clifton, binutils, buildbot



On 1/4/23 01:35, Mark Wielaard wrote:
> Hi Christophe,
> 
> On Tue, Jan 03, 2023 at 06:29:30PM +0100, Christophe Lyon wrote:
>> Actually we have:
>> armhf-ubuntu20_04 and armhf-ubuntu22_04 to build GDB and
>> ubuntu22_04-armhf to build GCC
>>
>> The containers we use to build GDB have less cores than the ones we
>> use for GCC. If we add binutils builders on the same workers as GDB,
>> will they cooperate nicely (as in "do not compete for CPU", ie. be
>> scheduled at different times)?
>>
>> If yes, maybe it makes sense to add binutils builders to:
>> armhf-ubuntu20_04
>> armhf-ubuntu22_04
>> arm64-ubuntu20_04
>> arm64-ubuntu22_04
>>
>> WDYT?
> 
> That makes sense. Yes, they will cooperate nicely because the workers
> all have max_builds=1. So if there are multiple builds that could use
> the same worker they will just wait in the pending queue.
> 
> I'll push the following to try the new builders.

Thanks!

I see they are all failing currently ;-)
I have sent patches for the armhf failures yesterday, so they will 
hopefully become green soon.
I don't understand why the arm64 ones are failing, is it because there 
is one linker test with XPASS? (I didn't notice any "unexpected failure" 
in the .sum summaries)

Christophe

> 
> Thanks,
> 
> Mark

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

* Re: The 2.40 branch has been created
  2023-01-04 10:31           ` Christophe Lyon
@ 2023-01-04 11:07             ` Mark Wielaard
  0 siblings, 0 replies; 3+ messages in thread
From: Mark Wielaard @ 2023-01-04 11:07 UTC (permalink / raw)
  To: Christophe Lyon; +Cc: Matthias Klose, Nick Clifton, binutils, buildbot

Hi Christophe,

On Wed, Jan 04, 2023 at 11:31:50AM +0100, Christophe Lyon wrote:
> >I'll push the following to try the new builders.
> 
> Thanks!
> 
> I see they are all failing currently ;-)
> I have sent patches for the armhf failures yesterday, so they will
> hopefully become green soon.
> I don't understand why the arm64 ones are failing, is it because
> there is one linker test with XPASS? (I didn't notice any
> "unexpected failure" in the .sum summaries)

Yes, the "XPASS: Run pr19719 fun undefined" is unexpected and so fails
make check.

Note that same XPASS on binutils-fedora-arm64, but that also has an
extra FAIL: Build pr26094-1

Cheers,

Mark

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

end of thread, other threads:[~2023-01-04 11:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <87mt739186.fsf@redhat.com>
     [not found] ` <35a47bed-36af-6f8a-55a6-9cef247f9840@canonical.com>
     [not found]   ` <e6fcc285-becc-5816-db4a-36e37e8c08cd@arm.com>
     [not found]     ` <20230102230528.GA6490@gnu.wildebeest.org>
     [not found]       ` <2351b01b-ace6-3028-ece5-0f47caf21950@arm.com>
2023-01-04  0:35         ` The 2.40 branch has been created Mark Wielaard
2023-01-04 10:31           ` Christophe Lyon
2023-01-04 11:07             ` 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).