From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id D33EB3857368 for ; Thu, 28 Apr 2022 11:40:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org D33EB3857368 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: by gnu.wildebeest.org (Postfix, from userid 1000) id B9304302BBED; Thu, 28 Apr 2022 13:40:56 +0200 (CEST) Date: Thu, 28 Apr 2022 13:40:56 +0200 From: Mark Wielaard To: builder@sourceware.org Cc: Arthur Cohen , gcc-rust@gcc.gnu.org Subject: Re: =?utf-8?B?4pigIEJ1aWxkYm8=?= =?utf-8?Q?t?= (GNU Toolchain): gccrust - failed compile (failure) (master) Message-ID: <20220428114056.GA23335@gnu.wildebeest.org> References: <20220428111745.CDE3C3858407@sourceware.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="qDbXVdCdHGoSgWSk" Content-Disposition: inline In-Reply-To: <20220428111745.CDE3C3858407@sourceware.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-Spam-Status: No, score=-9.5 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-rust@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: gcc-rust mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2022 11:40:59 -0000 --qDbXVdCdHGoSgWSk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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 --qDbXVdCdHGoSgWSk Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="0001-Disable-gccrust-debian-arm64-builder.patch" >From 554270393043c2c893b819f43ef59a1c732ded62 Mon Sep 17 00:00:00 2001 From: Mark Wielaard 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 --qDbXVdCdHGoSgWSk--