From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from elastic.org (elastic.org [96.126.110.187]) by sourceware.org (Postfix) with ESMTPS id 438C5382FADE for ; Sun, 20 Nov 2022 13:17:28 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 438C5382FADE Authentication-Results: sourceware.org; dmarc=pass (p=quarantine dis=none) header.from=elastic.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=elastic.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=elastic.org ; s=default2; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=aOZuHouTCYoiE7dYGuOG/zGVQCDdbcZtWvxOwP/hb80=; b=kHgjKjnEaKTzGEgCihk1RYSPlO NVBQT3KnglH8ZNdLaiwMXq9RRubPYihmH2PoX5w9YFj168AQ6aVZbJ9VAQEiarsOnyWFjdIx51yxu BnOp3LuZe05BaTlRI87jg8vSs/BVtDgkkc+gOt3Ewg8CEL/IqniwbtvLLujCkQGwuzF0ttpLEogPz KDYryVSoWysx/4iOYpqCGz3vbXVYJ+7LMI9r62rAARbTQ3ys9askcwkdVV9Xg7hsVDlUFs0hsi8xu sfHUomFLJMYN9EzxRagjb4aQMuIFL9rfe1LQd7QjALJCglTmBQCS1d59ApRtY0e/MMKPdwW74HQXn IzIlD5Sw==; Received: from vpn-home.elastic.org ([10.0.0.2] helo=elastic.org) by elastic.org with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1owkCJ-0006mG-27; Sun, 20 Nov 2022 13:17:23 +0000 Received: from very.elastic.org ([192.168.1.1]) by elastic.org with esmtp (Exim 4.96) (envelope-from ) id 1owkCJ-000Y3g-0w; Sun, 20 Nov 2022 08:17:23 -0500 Received: from fche by very.elastic.org with local (Exim 4.96) (envelope-from ) id 1owkCJ-00BHLQ-0j; Sun, 20 Nov 2022 08:17:23 -0500 Date: Sun, 20 Nov 2022 08:17:23 -0500 From: "Frank Ch. Eigler" To: Arsen =?utf-8?Q?Arsenovi=C4=87?= Cc: "Jose E. Marchesi" , Arsen =?utf-8?Q?Arsenovi=C4=87?= via poke-devel , buildbot@sourceware.org, positron@gnu.org Subject: Re: [PATCH builder.git] master.cfg: add GNU poke builder Message-ID: References: <20221119233644.911898-1-arsen@aarsen.me> <877czpalt4.fsf@gnu.org> <86edtxvlbn.fsf@aarsen.me> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <86edtxvlbn.fsf@aarsen.me> X-Sender-Verification: "" X-Spam-Status: No, score=-101.6 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS,TXREP,USER_IN_WELCOMELIST,USER_IN_WHITELIST 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: Hi - > I think config.log should cover all the useful information config.status > and config.cache contains, so maybe we could also omit saving those? > WDYT? Other builder.sourceware.org projects that use both check & distcheck import the two sets of configury/test results into separate bunsen testruns, so they can be separately tracked. See also: gdb_factory.addStep(make_gdb_check_step('--target_board=native-gdbserver')) gdb_factory.addSteps(bunsen_logfile_upload_cpio_steps( # only a few tests being run but still ["*.sum", "*.log"], workdir='gdb-build', tagsuffix='/gdbserver')) gdb_factory.addStep(make_gdb_check_step('--target_board=native-extended-gdbserver')) gdb_factory.addSteps(bunsen_logfile_upload_cpio_steps( # only a few tests being run but still ["*.sum", "*.log"], workdir='gdb-build', tagsuffix='/extended-gdbserver')) - FChE