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 1BE37386F0E7 for ; Fri, 24 Jun 2022 19:26:08 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 1BE37386F0E7 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 (deer0x0e.wildebeest.org [172.31.17.144]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id E2F973000A21; Fri, 24 Jun 2022 21:26:06 +0200 (CEST) Received: by reform (Postfix, from userid 1000) id 7AE272E8345A; Fri, 24 Jun 2022 21:26:06 +0200 (CEST) From: Mark Wielaard To: buildbot@sourceware.org Cc: Mark Wielaard Subject: [COMMITTED] Use glibc_build_factory for opensusetw and opensuseleap Date: Fri, 24 Jun 2022 21:26:04 +0200 Message-Id: <20220624192604.17028-1-mark@klomp.org> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.7 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: buildbot@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "The https://builder.sourceware.org/ buildbot" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Jun 2022 19:26:10 -0000 The full glibc build and check takes too long to run over all commits. Also both report the exact same test results as the glibc-fedora-x86_64 builder which already does a full build and check. --- builder/master.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builder/master.cfg b/builder/master.cfg index ef15b03..9d0de09 100644 --- a/builder/master.cfg +++ b/builder/master.cfg @@ -2133,7 +2133,7 @@ glibc_opensusetw_x86_64_builder = util.BuilderConfig( readContainerFile('opensuse-tumbleweed')}, workernames=vm_workers, tags=["glibc", "opensusetw", "x86_64"], - factory=glibc_factory) + factory=glibc_build_factory) c['builders'].append(glibc_opensusetw_x86_64_builder) glibc_opensuseleap_x86_64_builder = util.BuilderConfig( @@ -2142,7 +2142,7 @@ glibc_opensuseleap_x86_64_builder = util.BuilderConfig( readContainerFile('opensuse-leap')}, workernames=vm_workers, tags=["glibc", "opensuseleap", "x86_64"], - factory=glibc_factory) + factory=glibc_build_factory) c['builders'].append(glibc_opensuseleap_x86_64_builder) -- 2.30.2