From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5FA1A158087 for ; Tue, 18 Jan 2022 20:20:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A34EEE07D4; Tue, 18 Jan 2022 20:20:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 399E0E07D4 for ; Tue, 18 Jan 2022 20:20:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4339C342FA4 for ; Tue, 18 Jan 2022 20:20:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81CFB261 for ; Tue, 18 Jan 2022 20:20:30 +0000 (UTC) From: "Magnus Granberg" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" Message-ID: <1642537213.d3d07a68aa2c1bcba40c613f68867054bd71942d.zorry@gentoo> Subject: [gentoo-commits] proj/tinderbox-cluster:master commit in: buildbot_gentoo_ci/steps/ X-VCS-Repository: proj/tinderbox-cluster X-VCS-Files: buildbot_gentoo_ci/steps/builders.py X-VCS-Directories: buildbot_gentoo_ci/steps/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: d3d07a68aa2c1bcba40c613f68867054bd71942d X-VCS-Branch: master Date: Tue, 18 Jan 2022 20:20:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8cdb9cd6-7944-46df-9aa5-bc553c379718 X-Archives-Hash: 53a10b486f721c85a86fb23d7fedcd2e commit: d3d07a68aa2c1bcba40c613f68867054bd71942d Author: Magnus Granberg gentoo org> AuthorDate: Tue Jan 18 20:20:13 2022 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Tue Jan 18 20:20:13 2022 +0000 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=d3d07a68 Use tee instead of >> on emerge -qpv0 cpv Signed-off-by: Magnus Granberg gentoo.org> buildbot_gentoo_ci/steps/builders.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/buildbot_gentoo_ci/steps/builders.py b/buildbot_gentoo_ci/steps/builders.py index 5088c4a..f2fe16c 100644 --- a/buildbot_gentoo_ci/steps/builders.py +++ b/buildbot_gentoo_ci/steps/builders.py @@ -1109,7 +1109,9 @@ class RunEmergeInfo(BuildStep): shell_commad_list.append('=' + self.getProperty('cpv')) shell_commad_list.append('--usepkg-exclude') shell_commad_list.append(c + '/' + p) - shell_commad_list.append('>>') + shell_commad_list.append('|') + shell_commad_list.append('tee') + shell_commad_list.append('-a') shell_commad_list.append('/tmp/emerge_info.txt') aftersteps_list.append( steps.ShellCommand(