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 B2B97158094 for ; Tue, 28 Jun 2022 23:26:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBD19E0B66; Tue, 28 Jun 2022 23:26:38 +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 9181EE0B66 for ; Tue, 28 Jun 2022 23:26:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 46C333411D8 for ; Tue, 28 Jun 2022 23:26:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 967F0105 for ; Tue, 28 Jun 2022 23:26:35 +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: <1656458782.c556e56ad98d3e81fac06417661fd7edf2c1c9fb.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: c556e56ad98d3e81fac06417661fd7edf2c1c9fb X-VCS-Branch: master Date: Tue, 28 Jun 2022 23:26:35 +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: 679e68fe-e469-4189-b8e0-63ab8dfc9963 X-Archives-Hash: 29142ad0c4486913fcf322698fc23f07 commit: c556e56ad98d3e81fac06417661fd7edf2c1c9fb Author: Magnus Granberg gentoo org> AuthorDate: Tue Jun 28 23:26:22 2022 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Tue Jun 28 23:26:22 2022 +0000 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=c556e56a Change emerge retrys to 5 from 3 Signed-off-by: Magnus Granberg gentoo.org> buildbot_gentoo_ci/steps/builders.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/buildbot_gentoo_ci/steps/builders.py b/buildbot_gentoo_ci/steps/builders.py index fa11290..dcd54c2 100644 --- a/buildbot_gentoo_ci/steps/builders.py +++ b/buildbot_gentoo_ci/steps/builders.py @@ -18,7 +18,7 @@ from buildbot.process.results import SKIPPED from buildbot.plugins import steps #FIXME: should be set in config -hosturl = 'http://77.110.8.67:8000' +hosturl = 'http://90.231.13.235:8000' def PersOutputOfEmerge(rc, stdout, stderr): emerge_output = {} @@ -856,7 +856,8 @@ class CheckEmergeLogs(BuildStep): if self.step == 'pre-build': print(emerge_output) # this should be set in the config - if self.getProperty('rerun') <= 3: + retrays = 5 + if self.getProperty('rerun') <= retrays: # when we need to change use. we could rerun pre-build with # --autounmask-use=y --autounmask-write=y --autounmask-only=y # but we use --binpkg--respect-use=y in EMERGE_DEFAULT_OPTS