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, 28 Jun 2022 23:26:39
Message-Id: 1656458782.c556e56ad98d3e81fac06417661fd7edf2c1c9fb.zorry@gentoo
1 commit: c556e56ad98d3e81fac06417661fd7edf2c1c9fb
2 Author: Magnus Granberg <zorry <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 28 23:26:22 2022 +0000
4 Commit: Magnus Granberg <zorry <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 28 23:26:22 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=c556e56a
7
8 Change emerge retrys to 5 from 3
9
10 Signed-off-by: Magnus Granberg <zorry <AT> gentoo.org>
11
12 buildbot_gentoo_ci/steps/builders.py | 5 +++--
13 1 file changed, 3 insertions(+), 2 deletions(-)
14
15 diff --git a/buildbot_gentoo_ci/steps/builders.py b/buildbot_gentoo_ci/steps/builders.py
16 index fa11290..dcd54c2 100644
17 --- a/buildbot_gentoo_ci/steps/builders.py
18 +++ b/buildbot_gentoo_ci/steps/builders.py
19 @@ -18,7 +18,7 @@ from buildbot.process.results import SKIPPED
20 from buildbot.plugins import steps
21
22 #FIXME: should be set in config
23 -hosturl = 'http://77.110.8.67:8000'
24 +hosturl = 'http://90.231.13.235:8000'
25
26 def PersOutputOfEmerge(rc, stdout, stderr):
27 emerge_output = {}
28 @@ -856,7 +856,8 @@ class CheckEmergeLogs(BuildStep):
29 if self.step == 'pre-build':
30 print(emerge_output)
31 # this should be set in the config
32 - if self.getProperty('rerun') <= 3:
33 + retrays = 5
34 + if self.getProperty('rerun') <= retrays:
35 # when we need to change use. we could rerun pre-build with
36 # --autounmask-use=y --autounmask-write=y --autounmask-only=y
37 # but we use --binpkg--respect-use=y in EMERGE_DEFAULT_OPTS