On Thu, Apr 28, 2022 at 11:17:45AM +0000, builder--- via Gcc-rust wrote:
> A new failure has been detected on builder gccrust-debian-arm64
> while building gccrust.

Sorry about that (again). It seems the little arm64 board just runs
out of memory from time to time when building gccrs. I'll disable the
arm64 builder for now till I have figured out how to provide more
memory to it.

Cheers,

Mark
>From 554270393043c2c893b819f43ef59a1c732ded62 Mon Sep 17 00:00:00 2001
From: Mark Wielaard <m...@klomp.org>
Date: Thu, 28 Apr 2022 13:35:07 +0200
Subject: [PATCH] Disable gccrust-debian-arm64 builder

The little arm64 board just runs out of memory too often.
---
 builder/master.cfg | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/builder/master.cfg b/builder/master.cfg
index dc6afcd..0c39365 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -347,7 +347,7 @@ gccrust_scheduler = schedulers.SingleBranchScheduler(
         fileIsImportant=gccrsImportant,
         builderNames=["gccrust-fedora-x86_64",
                       "gccrust-debian-i386",
-                      "gccrust-debian-arm64",
+#                      "gccrust-debian-arm64",
                       "gccrust-fedora-ppc64le",
                       "gccrust-fedora-ppc64",
                       "gccrust-fedora-s390x",
@@ -1061,12 +1061,13 @@ gccrust_debian_i386_builder = util.BuilderConfig(
         factory=gccrust_factory)
 c['builders'].append(gccrust_debian_i386_builder)
 
-gccrust_debian_arm64_builder = util.BuilderConfig(
-        name="gccrust-debian-arm64",
-        workernames=["debian-arm64"],
-        tags=["gccrust", "debian", "arm64"],
-        factory=gccrust_factory)
-c['builders'].append(gccrust_debian_arm64_builder)
+# The poor little arm64 board just runs out of memory
+#gccrust_debian_arm64_builder = util.BuilderConfig(
+#        name="gccrust-debian-arm64",
+#        workernames=["debian-arm64"],
+#        tags=["gccrust", "debian", "arm64"],
+#        factory=gccrust_factory)
+#c['builders'].append(gccrust_debian_arm64_builder)
 
 gccrust_fedora_ppc64le_builder = util.BuilderConfig(
         name="gccrust-fedora-ppc64le",
-- 
2.27.0

-- 
Gcc-rust mailing list
Gcc-rust@gcc.gnu.org
https://gcc.gnu.org/mailman/listinfo/gcc-rust

Reply via email to