From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id 849CD38582A4 for ; Mon, 11 Mar 2024 19:05:45 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 849CD38582A4 Authentication-Results: sourceware.org; dmarc=fail (p=none dis=none) header.from=efficios.com Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=efficios.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 849CD38582A4 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=158.69.221.121 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1710183948; cv=none; b=kLbaJLDnIu4z0U8wYs4/WkzQQBtt52+bI9RVvvr4QllbeHVwCNP5MOwkysA6YXL9B3lOMKh25OFzg298jOvKAqdhqYG1OKuJQBGac1fYZI5ETq1CQFmZHyKh9duDe1V7OwIJE9HJdYW+SHmELHljTX1eBcmD2wgMzy7ym5Z09Zs= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1710183948; c=relaxed/simple; bh=R0wCx9M0jQMlnGScNvQW0/BCqDK04r0oCyQ2nSYBrmY=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=MpCA+ZxGPsd8D3+VhHJ6FUrFfALUoFhdPIJdfrCISs9lHTvhb9LTlfFIkrxzHV8rPOcyzFTtlgofPRSfSOJ/rAxeatR3rwN0rTx6Abk8X6yV2op+jyZpAZhtUeRNmWtCJy+G4PH9TQosv3p0XGDRwFvZvUaR4yravYJ/6f+lbUg= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from smarchi-efficios.internal.efficios.com (192-222-143-198.qc.cable.ebox.net [192.222.143.198]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 2F8591E0AC; Mon, 11 Mar 2024 15:05:45 -0400 (EDT) From: Simon Marchi To: buildbot@sourceware.org Cc: Simon Marchi Subject: [PATCH 8/8] autoregen.py: be more verbose Date: Mon, 11 Mar 2024 15:01:20 -0400 Message-ID: <20240311190341.235331-9-simon.marchi@efficios.com> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240311190341.235331-1-simon.marchi@efficios.com> References: <20240311190341.235331-1-simon.marchi@efficios.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-3496.4 required=5.0 tests=BAYES_00,GIT_PATCH_0,KAM_DMARC_NONE,KAM_DMARC_STATUS,SPF_HELO_PASS,SPF_SOFTFAIL,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: - Print the version of all the tools used. - Print more clearly when entering or skipping a directory. --- builder/containers/autoregen.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/builder/containers/autoregen.py b/builder/containers/autoregen.py index 437f0dabe2de..ba77320c7248 100755 --- a/builder/containers/autoregen.py +++ b/builder/containers/autoregen.py @@ -58,6 +58,11 @@ def run_shell(cmd: str): res.check_returncode() +run_shell(f"{AUTOCONF_BIN} --version") +run_shell(f"{AUTOMAKE_BIN} --version") +run_shell(f"{ACLOCAL_BIN} --version") +run_shell(f"{AUTOHEADER_BIN} --version") + config_folders: list[Path] = [] for root, _, files in os.walk("."): @@ -66,11 +71,11 @@ for root, _, files in os.walk("."): config_folders.append(Path(root).resolve()) for folder in sorted(config_folders): - print(folder, flush=True) - if folder.stem in SKIP_DIRS: + print(f"Skipping directory {folder}", flush=True) continue + print(f"Entering directory {folder}", flush=True) os.chdir(folder) configure_lines = open("configure.ac").read().splitlines() -- 2.44.0