From patchwork Wed May 22 22:08:53 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mark Wielaard X-Patchwork-Id: 90700 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 96D8C3865C22 for ; Wed, 22 May 2024 22:17:18 +0000 (GMT) X-Original-To: binutils@sourceware.org Delivered-To: binutils@sourceware.org Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id 93AC23865C16; Wed, 22 May 2024 22:15:50 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 93AC23865C16 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 93AC23865C16 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=45.83.234.184 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1716416152; cv=none; b=eSxAI8RuXDJ4T8SFMNTj5lzF6Kse6LlHD2gAsrWdMTMemAVh9Iz++rHif6OPF7U+eenmWKa+BV2l1k4tQ3DtAtCQShwttbtg3uh6/iA4X/kOPqcRKlrt6UgA2cIAlFg/+7yXR2FKAwNpsbH/MIA03P3yCr+gKB5EzDGAnZl4q+0= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1716416152; c=relaxed/simple; bh=FfTIOeTSErNnzCD7xq2OR1VyJ1BlzSOpohJvEV/zc9o=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=GpTGcl/K6bViZH41Ifar/pYBTKtp5J4Ije/jqIAmJAAXg24ajU3EdkjwNAHPu+DSUc5PsoZD/G82w5K6FJgVtAJGAZTZ8tFtfx5y1XG0n3FDdxIX38hBZVwZ9Lp5V4uuMRBFRHQ0WFNrd4Ng3zSt4McS81vgVJzllhGqvV/wwv4= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from mwielaar-thinkpadp1gen3.rmtnl.csb (deer0x03.wildebeest.org [172.31.17.133]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id A1CB930003AE; Thu, 23 May 2024 00:15:49 +0200 (CEST) Received: by mwielaar-thinkpadp1gen3.rmtnl.csb (Postfix, from userid 10916) id 929458EB26; Thu, 23 May 2024 00:15:49 +0200 (CEST) From: Mark Wielaard To: buildbot@sourceware.org Cc: binutils@sourceware.org, Nick Clifton , "Jose E. Marchesi" , elena.zannoni@oracle.com, david.faust@oracle.com, Mark Wielaard Subject: [PATCH 2/2] binutils snapshot steps should run in the git step workdir Date: Thu, 23 May 2024 00:08:53 +0200 Message-ID: <20240522221523.458943-3-mark@klomp.org> X-Mailer: git-send-email 2.45.1 In-Reply-To: <20240522221523.458943-1-mark@klomp.org> References: <20240522221523.458943-1-mark@klomp.org> MIME-Version: 1.0 X-Spam-Status: No, score=-8.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP 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: binutils@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Binutils mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: binutils-bounces+patchwork=sourceware.org@sourceware.org --- builder/master.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/builder/master.cfg b/builder/master.cfg index e5c1796c6996..09f359ca736f 100644 --- a/builder/master.cfg +++ b/builder/master.cfg @@ -2879,12 +2879,15 @@ binutils_make_clean_step = steps.ShellCommand( name="make clean") binutils_step_setversion = steps.ShellCommand( + workdir='binutils-gdb', name="set bfd version", command='sed -i "s/m4_define(\\[BFD_VERSION\\], \\[\\([0-9\\\\.]\\+\\)\\])/m4_define(\\[BFD_VERSION\\], [\\1-$(git rev-parse --short @)])/" bfd/version.m4') binutils_step_src_release = steps.ShellCommand( + workdir='binutils-gdb', name="src-release", command="./src-release.sh -g binutils") binutils_create_output_step = steps.ShellCommand( + workdir='binutils-gdb', name="create output", command="mkdir -p /home/builder/shared/output/src &&" + "mv ./binutils-*tar.gz /home/builder/shared/output/src")