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 BEC0A158094 for ; Wed, 27 Jul 2022 11:02:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C140FE113B; Wed, 27 Jul 2022 11:02:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 A1FA7E113B for ; Wed, 27 Jul 2022 11:02:19 +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 73238340F89 for ; Wed, 27 Jul 2022 11:02:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE9FD52C for ; Wed, 27 Jul 2022 11:02:16 +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: <1658839631.843b4272bf91ac8cf135664cab48c515f23d6cad.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/nodes.py X-VCS-Directories: buildbot_gentoo_ci/steps/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: 843b4272bf91ac8cf135664cab48c515f23d6cad X-VCS-Branch: master Date: Wed, 27 Jul 2022 11:02:16 +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: 4d99feaf-1299-445d-bc5c-fb1a3249cf35 X-Archives-Hash: 796bae4a7258e3895a452ed9d3e3dd7d commit: 843b4272bf91ac8cf135664cab48c515f23d6cad Author: Magnus Granberg gentoo org> AuthorDate: Tue Jul 26 12:47:11 2022 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Tue Jul 26 12:47:11 2022 +0000 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=843b4272 Use rootworkdir Signed-off-by: Magnus Granberg gentoo.org> buildbot_gentoo_ci/steps/nodes.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/buildbot_gentoo_ci/steps/nodes.py b/buildbot_gentoo_ci/steps/nodes.py index a77c878..3e15e5f 100644 --- a/buildbot_gentoo_ci/steps/nodes.py +++ b/buildbot_gentoo_ci/steps/nodes.py @@ -76,6 +76,7 @@ class SetupStage4Steps(BuildStep): workerdest = yield os.path.join(self.getProperty("workerbase"), self.getProperty('project_uuid')) workerdest_etc = yield os.path.join(workerdest, 'etc') print(workerdest_etc) + self.setProperty('rootworkdir', workerdest, 'rootworkdir') # create dir aftersteps_list.append(steps.ShellCommand( flunkOnFailure=True, @@ -86,9 +87,9 @@ class SetupStage4Steps(BuildStep): # download stage3 aftersteps_list.append(GetSteg3()) # setup portage - aftersteps_list.append(builders_steps.UpdateRepos(workdir=workerdest)) - aftersteps_list.append(portage_steps.SetReposConf(workdir=workerdest)) - aftersteps_list.append(portage_steps.SetMakeConf(workdir=workerdest)) + aftersteps_list.append(builders_steps.UpdateRepos()) + aftersteps_list.append(portage_steps.SetReposConf()) + aftersteps_list.append(portage_steps.SetMakeConf()) # add localegen #FIXME: set that in config locale_conf = []