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 5808B3858CD1 for ; Thu, 22 Feb 2024 23:02:12 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 5808B3858CD1 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 5808B3858CD1 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=45.83.234.184 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1708642942; cv=none; b=bGAtQC08A9u8paKMQmXKDFwprDubVZeTfuO0CfebflkDcjaJ3QmY3VhPn//jWqXzr+O2r5cA18qVaSsKhsw+5fIK/n5rO0YE0Lqr+KW5h0XWYGCEGG4Zaxtxl076xDKnZ09l6z3cyx7KudgSV+UWQCYXwiLuArHr299GLEHYvGs= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1708642942; c=relaxed/simple; bh=xqwuEnA9hGGx0nYWpZaHOddoC93glv31KX4E2Nu3ovQ=; h=From:To:Subject:Date:Message-Id:MIME-Version; b=LrGJEK3vXIG6W/36wotSMmkFGPrliQBBk9Gp4+sjbbvk4uRQnIfAvT9QDZv9gvcQ0CoeGjK4gGk65LXGrrOi/p90DUKL4iQmGdCr3hfrrHp5/cOID5mGl3PziW4AgX5uh9luGyKo8f1pVH8nwhnhsv6Eef5Lb56MVtQ+RQF2x5Y= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from csb.redhat.com (213-10-231-91.fixed.kpn.net [213.10.231.91]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 413B0302732A; Fri, 23 Feb 2024 00:02:11 +0100 (CET) Received: by csb.redhat.com (Postfix, from userid 10916) id F1CECCEED2; Fri, 23 Feb 2024 00:02:10 +0100 (CET) From: Mark Wielaard To: buildbot@sourceware.org Cc: Mark Wielaard Subject: [PATCH] glibc: Use --no-print-directory for make and make check steps Date: Fri, 23 Feb 2024 00:02:07 +0100 Message-Id: <20240222230207.2217135-1-mark@klomp.org> X-Mailer: git-send-email 2.39.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-9.6 required=5.0 tests=BAYES_00,GIT_PATCH_0,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: A lots of output of the parallel glibc make and make check steps is just printing the directory entered and exited. This doesn't really adds must info and creates giant log files. Disable printing directory changes. --- builder/master.cfg | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/builder/master.cfg b/builder/master.cfg index fbe6ffb..5f21a2b 100644 --- a/builder/master.cfg +++ b/builder/master.cfg @@ -3742,22 +3742,25 @@ glibc_configure_step = steps.Configure( glibc_make_step = steps.Compile( workdir='glibc-build', command=addOutputSync.withArgs(['make', - util.Interpolate('-j%(prop:maxcpus)s')]), + util.Interpolate('-j%(prop:maxcpus)s'), + '--no-print-directory']), name='make', haltOnFailure=False, flunkOnFailure=True) glibc_make_build_step = steps.Compile( workdir='glibc-build', command=addOutputSync.withArgs(['make', - util.Interpolate('-j%(prop:ncpus)s')]), + util.Interpolate('-j%(prop:ncpus)s'), + '--no-print-directory']), name='make', haltOnFailure=True) glibc_check_step = steps.Test( workdir='glibc-build', command=addOutputSync.withArgs(['make', - util.Interpolate('-j%(prop:maxcpus)s'), - 'check']), + util.Interpolate('-j%(prop:maxcpus)s'), + '--no-print-directory', + 'check']), env={'TIMEOUTFACTOR': '4'}, timeout=2400, name='make check', @@ -3766,9 +3769,10 @@ glibc_check_step = steps.Test( glibc_check_build_step = steps.Test( workdir='glibc-build', command=addOutputSync.withArgs(['make', - 'subdirs=elf', - util.Interpolate('-j%(prop:ncpus)s'), - 'check']), + 'subdirs=elf', + util.Interpolate('-j%(prop:ncpus)s'), + '--no-print-directory', + 'check']), env={'TIMEOUTFACTOR': '4'}, name='make check', haltOnFailure=False, flunkOnFailure=True) -- 2.39.3