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 86EBE383E6A7; Thu, 9 Jun 2022 03:37:12 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 86EBE383E6A7 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: from reform (deer0x09.wildebeest.org [172.31.17.139]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id A765A3000B37; Thu, 9 Jun 2022 05:37:10 +0200 (CEST) Received: by reform (Postfix, from userid 1000) id DC2AA2E83DB8; Thu, 9 Jun 2022 05:36:53 +0200 (CEST) Date: Thu, 9 Jun 2022 05:36:53 +0200 From: Mark Wielaard To: Tom Kacvinsky Cc: buildbot@sourceware.org, gdb-testers@sourceware.org, binutils@sourceware.org Subject: Re: =?utf-8?Q?=E2=98=A0_Buildbot_=28GN?= =?utf-8?Q?U?= Toolchain): binutils-gdb - failed compile (failure) (master) Message-ID: References: <20220609002024.1DF6B3853547@sourceware.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="GOPJn6i4TbQFycmS" Content-Disposition: inline In-Reply-To: X-Spam-Status: No, score=-11.5 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 X-BeenThere: gdb-testers@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-testers mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Jun 2022 03:37:14 -0000 --GOPJn6i4TbQFycmS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi Tom, On Wed, Jun 08, 2022 at 08:27:48PM -0400, Tom Kacvinsky wrote: > On Wed, Jun 8, 2022 at 8:20 PM builder--- via Binutils < > binutils@sourceware.org> wrote: > > > > - 4: make ( failure ) > > Logs: > > - stdio: > > https://builder.sourceware.org/buildbot/#builders/77/builds/173/steps/4/logs/stdio > > - warnings (8): > > https://builder.sourceware.org/buildbot/#builders/77/builds/173/steps/4/logs/warnings__8_ > > > > > makeinfo is not installed on that machine. makeinfo is part of the > texinfo package. Oops. You are correct. I moved the builder to a container to be more reproducible. Containers start out nice and small, but when using for CI they do tend to grow the size of a full distro :) Pushed the attached update to the Container file. Cheers, Mark --GOPJn6i4TbQFycmS Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0001-Add-texinfo-to-debian-and-fedora-Containerfile.patch" >>From cb7f4610f68584a0b2ec4b390ab88d5e34e1a427 Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Thu, 9 Jun 2022 05:35:58 +0200 Subject: [PATCH] Add texinfo to debian and fedora Containerfile --- builder/containers/Containerfile-debian-stable | 1 + builder/containers/Containerfile-fedora-latest | 1 + 2 files changed, 2 insertions(+) diff --git a/builder/containers/Containerfile-debian-stable b/builder/containers/Containerfile-debian-stable index 1df8cf5..5dc8ac8 100644 --- a/builder/containers/Containerfile-debian-stable +++ b/builder/containers/Containerfile-debian-stable @@ -11,6 +11,7 @@ RUN apt-get update && \ bzip2 libbz2-dev xz-utils liblzma-dev gzip zlib1g-dev zstd libzstd-dev \ findutils file tar curl libarchive-tools libarchive-dev libcurl4-gnutls-dev \ libmicrohttpd-dev libsqlite3-dev libelf-dev libdw-dev elfutils \ + texinfo \ xmlto xsltproc docbook-xsl docbook-xml \ libxml2-dev dos2unix python3-dev python3-mock \ python3-rpm python3-xdg mime-support libopenmpi-dev gdb help2man wget \ diff --git a/builder/containers/Containerfile-fedora-latest b/builder/containers/Containerfile-fedora-latest index c0c555a..ce3b07e 100644 --- a/builder/containers/Containerfile-fedora-latest +++ b/builder/containers/Containerfile-fedora-latest @@ -9,6 +9,7 @@ RUN dnf upgrade -y && \ bzip2 bzip2-devel xz xz-devel gzip zlib-devel zstd libzstd-devel \ findutils file tar curl libarchive-devel libcurl-devel \ libmicrohttpd-devel sqlite-devel elfutils-devel \ + texinfo \ xmlto xmlto-tex fop poppler-utils libxslt docbook-dtds docbook-style-xsl \ libxml2-devel dos2unix dpkg koji python3-devel python3-koji python3-mock \ python3-rpm python3-pyxdg mailcap openmpi-devel gdb help2man wget \ -- 2.30.2 --GOPJn6i4TbQFycmS--