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 C55283858D28 for ; Sun, 12 Nov 2023 16:49:12 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org C55283858D28 Authentication-Results: sourceware.org; dmarc=pass (p=quarantine dis=none) header.from=elastic.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=elastic.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org C55283858D28 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=96.126.110.187 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1699807754; cv=none; b=uREf/xMDd/nZHBb3oNrEUY4UI0qN2NWpRJ6EdRKVimX9XdpmT6fGGWYPVmATEnY488i6s+1p/mHWwcwneWgP4YTfG7gl00OnwPEtj0iZfsyCPhlWhZMWQ2262FpIz+Zw5phYpOGW4ZMzlnPaMpfedNQDlBKnHYcSQFQ281KICn8= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1699807754; c=relaxed/simple; bh=VB2qpGABARrBOG+WGSq3H0mBUHUzfdjGWqY7BBC7ois=; h=DKIM-Signature:Date:From:To:Subject:Message-ID:MIME-Version; b=p6j4WOObI7FIDzUk3nDB18wwLJRPGzjA2l8H0Y5cTd5XAWBKuEo4yV1nO3tqaPbRkiasabntOaGiSnu7fD6jxy+mvWB7simPxG2t9tFCrdTizePYATAdFtgd3FIhBPlyvmk69CAI5UAvPdvww0p/f/NtjFCbOq1sYsLhahAOi6s= ARC-Authentication-Results: i=1; server2.sourceware.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=oy0GqsnI9GhDaC8JutMKX2mYebvN1x8IvpfDRMMqhc8=; b=Fsse17bTS+/wJp53CnHceEHzN9 yYXAD8bJ2elbEqH6wCQaFXhDzQnfYzfws3tzhnAGATrq4mZa1XUL94pqonNhTrw9xq4a1pIOvJZI3 H1G/fJ5x7Lb4vIZKbV1gvSjt3IOhpryBchOApgt1GmqanCYfqeynyZ9ZON8NLheOvzUc3deB4Qy6k lG9WEy8zrSYixgmUL/W65XEko3pcBuLgGr7qUd/W560BU9EJo1Gjp8/swsEhB/yHbnV4qwEOFsswn 39c8SwS7HH4rSh/SUevgu1msVRxDkIAl+ecOPheghibldjZ+zZ5BeGSdxnkfsIQ6mAidFBuPcR7Ik JbwsJ/FA==; 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.2) (envelope-from ) id 1r2De4-0003e6-0z; Sun, 12 Nov 2023 16:49:12 +0000 Received: from very.elastic.org ([192.168.1.1]) by elastic.org with esmtp (Exim 4.96.2) (envelope-from ) id 1r2De3-000V4e-2y; Sun, 12 Nov 2023 11:49:11 -0500 Received: from fche by very.elastic.org with local (Exim 4.96.1) (envelope-from ) id 1r2De3-002cEY-2m; Sun, 12 Nov 2023 11:49:11 -0500 Date: Sun, 12 Nov 2023 11:49:11 -0500 From: "Frank Ch. Eigler" To: Mark Wielaard Cc: buildbot@sourceware.org Subject: Re: [PATCH] Add binutils-gdb-autoregen builder Message-ID: References: <20231112161906.1539555-1-mark@klomp.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231112161906.1539555-1-mark@klomp.org> X-Sender-Verification: "" X-Spam-Status: No, score=-102.0 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE,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 - > Generalize the autoregen.py script by searching for 'configure.ac' > instead of 'configure'. Skip "foreign" readline and minizip dirs. > Make autoregen_step and git_diff_step generic, define early. > Add binutils-gdb-autoregen builder to binutils_gdb_scheduler. > +autoregen_step = steps.ShellCommand( > + command="autoregen.py", > + name="autoregen.py", > + haltOnFailure=True) Note that this stuff literally can only add work for the developers. If the tooling knows what the output purportedly should be, it is in a position to correct the mismatches, not merely complain about it. That would actually save human effort. - FChE