aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Granberg <zorry@gentoo.org>2022-11-09 22:05:15 +0100
committerMagnus Granberg <zorry@gentoo.org>2022-11-09 22:05:15 +0100
commitea8cb4a47f01964a09a7bd6f863d871a01c8b76d (patch)
treeb2597272786981b8b0c1264dc805a933f797f3d7
parentAdd config option for worker basedir (diff)
downloadtinderbox-cluster-ea8cb4a47f01964a09a7bd6f863d871a01c8b76d.tar.gz
tinderbox-cluster-ea8cb4a47f01964a09a7bd6f863d871a01c8b76d.tar.bz2
tinderbox-cluster-ea8cb4a47f01964a09a7bd6f863d871a01c8b76d.zip
Rename setBuildbotLog to Summarylog
Signed-off-by: Magnus Granberg <zorry@gentoo.org>
-rw-r--r--buildbot_gentoo_ci/config/buildfactorys.py2
-rw-r--r--buildbot_gentoo_ci/steps/logs.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/buildbot_gentoo_ci/config/buildfactorys.py b/buildbot_gentoo_ci/config/buildfactorys.py
index 7f2dff9..d07a143 100644
--- a/buildbot_gentoo_ci/config/buildfactorys.py
+++ b/buildbot_gentoo_ci/config/buildfactorys.py
@@ -180,7 +180,7 @@ def parse_build_log():
# set it SUCCESS/FAILURE/WARNINGS
f.addStep(logs.MakeIssue())
# add sum log to buildbot log
- f.addStep(logs.setBuildbotLog())
+ f.addStep(logs.Summarylog())
# pers the emerge info
f.addStep(logs.ReadEmergeInfoLog())
# add emerge info to log and db
diff --git a/buildbot_gentoo_ci/steps/logs.py b/buildbot_gentoo_ci/steps/logs.py
index 67845e7..2a52308 100644
--- a/buildbot_gentoo_ci/steps/logs.py
+++ b/buildbot_gentoo_ci/steps/logs.py
@@ -404,9 +404,9 @@ class MakeIssue(BuildStep):
yield self.build.addStepsAfterCurrentStep(self.aftersteps_list)
return SUCCESS
-class setBuildbotLog(BuildStep):
+class Summarylog(BuildStep):
- name = 'setBuildbotLog'
+ name = 'Summarylog'
description = 'Running'
descriptionDone = 'Ran'
descriptionSuffix = None