From: Jo-Philipp Wich Date: Tue, 10 Jan 2017 18:59:32 +0000 (+0100) Subject: phase1, phase2: reduce backlog size X-Git-Tag: v1~197 X-Git-Url: http://git.openwrt.org/?p=buildbot.git;a=commitdiff_plain;h=d9786ca6b0d4de7af683d4821c28b89f78283ff1 phase1, phase2: reduce backlog size The build logs take up a lot of space and are relatively rarely needed, so only keep logs for the last 20 builds and general info for the last 30 builds. Signed-off-by: Jo-Philipp Wich --- diff --git a/phase1/master.cfg b/phase1/master.cfg index a87b45e..adf3cff 100644 --- a/phase1/master.cfg +++ b/phase1/master.cfg @@ -51,6 +51,10 @@ c['slavePortnum'] = slave_port # coalesce builds c['mergeRequests'] = True +# Reduce amount of backlog data +c['buildHorizon'] = 30 +c['logHorizon'] = 20 + ####### CHANGESOURCES home_dir = os.path.abspath(ini.get("general", "homedir")) diff --git a/phase2/master.cfg b/phase2/master.cfg index 4e9df39..b1d3860 100644 --- a/phase2/master.cfg +++ b/phase2/master.cfg @@ -61,6 +61,10 @@ c['slavePortnum'] = slave_port # coalesce builds c['mergeRequests'] = True +# Reduce amount of backlog data +c['buildHorizon'] = 30 +c['logHorizon'] = 20 + ####### CHANGESOURCES home_dir = os.path.abspath(ini.get("general", "homedir"))