From f8db71695960795fa77ff45051df604d64ca2b1b Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 18 Jul 2018 16:31:26 -0400 Subject: Consolidate buildInfo into a single blob (#10) * Consolidate buildInfo into a single blob * Move DataConfig interactions inside of the test_cmds finally clause --- src/DataConfig.groovy | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/DataConfig.groovy b/src/DataConfig.groovy index bc19ae2..1107d17 100644 --- a/src/DataConfig.groovy +++ b/src/DataConfig.groovy @@ -6,6 +6,9 @@ class DataConfig implements Serializable { String root = '.' String server_id = '' String match_prefix = '(.*)' + Boolean keep_data = false + int keep_builds = 20 + int keep_days = 10 def data = [:] DataConfig() {} -- cgit