Gentoo Archives: gentoo-commits

From: Magnus Granberg <zorry@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/tinderbox-cluster:master commit in: buildbot_gentoo_ci/steps/
Date: Tue, 18 May 2021 08:55:55
Message-Id: 1621328141.001f737e5d8cbc62272415580e34b53cee6d81b5.zorry@gentoo
1 commit: 001f737e5d8cbc62272415580e34b53cee6d81b5
2 Author: Magnus Granberg <zorry <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 18 08:55:41 2021 +0000
4 Commit: Magnus Granberg <zorry <AT> gentoo <DOT> org>
5 CommitDate: Tue May 18 08:55:41 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=001f737e
7
8 Make git use the latest revision
9
10 Signed-off-by: Magnus Granberg <zorry <AT> gentoo.org>
11
12 buildbot_gentoo_ci/steps/builders.py | 3 ++-
13 1 file changed, 2 insertions(+), 1 deletion(-)
14
15 diff --git a/buildbot_gentoo_ci/steps/builders.py b/buildbot_gentoo_ci/steps/builders.py
16 index 3a5de47..0bed647 100644
17 --- a/buildbot_gentoo_ci/steps/builders.py
18 +++ b/buildbot_gentoo_ci/steps/builders.py
19 @@ -327,8 +327,9 @@ class UpdateRepos(BuildStep):
20 repository_path = yield os.path.join(portage_repos_path, repository_data['name'])
21 yield self.build.addStepsAfterCurrentStep([
22 steps.Git(repourl=repository_data['url'],
23 - mode='incremental',
24 + mode='full',
25 submodules=True,
26 + alwaysUseLatest=True,
27 workdir=os.path.join(repository_path, ''))
28 ])
29 return SUCCESS