From: Thibaut VARÈNE Date: Tue, 14 Nov 2023 10:20:34 +0000 (+0100) Subject: phase2: report ccache stats at end of build X-Git-Tag: v10~9 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=32c36de026a501af18384f20a316f76f07229c06;p=buildbot.git phase2: report ccache stats at end of build Signed-off-by: Thibaut VARÈNE --- diff --git a/phase2/master.cfg b/phase2/master.cfg index 3d0ac11..1437825 100644 --- a/phase2/master.cfg +++ b/phase2/master.cfg @@ -784,6 +784,17 @@ for arch in arches: alwaysRun = True )) + factory.addStep(ShellCommand( + name = "ccachestat", + description = "Reporting ccache stats", + command=["ccache", "-s"], + want_stderr = False, + haltOnFailure = False, + flunkOnFailure = False, + warnOnFailure = False, + alwaysRun = True, + )) + c['builders'].append(BuilderConfig(name=arch[0], workernames=workerNames, factory=factory)) c['schedulers'].append(schedulers.Triggerable(name="trigger_%s" % arch[0], builderNames=[ arch[0] ]))