From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id BC9E53858D37 for ; Wed, 2 Aug 2023 11:34:34 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org BC9E53858D37 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1690976074; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=xv8CXXWZw7ye5ABKSpra34rvPcqp76WF7Orptj0j/jw=; b=XtDURamWpZ7VDRRuzRMkC522vsMUh55RRSRcQvC285S/1cWqks8/sMPRWtBaweFVQhSBas 83H1GeQdkhIUsUpSHSXMZx67Eq51CXvHGSc+8E1cYdGYLC5gfK3kV3zxtj8ERt8bjtTEde SEC51lpLpMB9an8hMV5nf1F1USQN6Dw= Received: from mimecast-mx02.redhat.com (66.187.233.73 [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-170-1H5Tur2-NB-SC4VDblIRcg-1; Wed, 02 Aug 2023 07:34:33 -0400 X-MC-Unique: 1H5Tur2-NB-SC4VDblIRcg-1 Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.rdu2.redhat.com [10.11.54.9]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id F29172A5954B for ; Wed, 2 Aug 2023 11:34:32 +0000 (UTC) Received: from fedora.redhat.com (unknown [10.45.226.102]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 79838492CA6; Wed, 2 Aug 2023 11:34:32 +0000 (UTC) From: Guinevere Larsen To: buildbot@sourceware.org Cc: Guinevere Larsen Subject: [PATCH] add clang to fedora-rawhide container Date: Wed, 2 Aug 2023 13:34:01 +0200 Message-ID: <20230802113400.1128479-2-blarsen@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.9 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-Spam-Status: No, score=-11.8 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,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: The GDB clang worker uses the fedora-rawhide container, however, that container doesn't actually install clang to compile the sources and run the testsuite. This commit fixes that. --- builder/containers/Containerfile-fedora-rawhide | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/containers/Containerfile-fedora-rawhide b/builder/containers/Containerfile-fedora-rawhide index 17d9fcc..b9f9679 100644 --- a/builder/containers/Containerfile-fedora-rawhide +++ b/builder/containers/Containerfile-fedora-rawhide @@ -2,7 +2,7 @@ FROM registry.fedoraproject.org/fedora:rawhide RUN dnf upgrade -y && \ dnf install -y \ - gcc gcc-c++ libubsan libasan libtool ccache valgrind \ + gcc gcc-c++ libubsan libasan libtool ccache valgrind clang \ glibc-gconv-extra \ isl-devel libmpc-devel mpfr-devel gmp-devel autogen \ patch util-linux diffutils iproute bsdtar cpio procps \ -- 2.41.0