diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-07-18 16:31:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-18 16:31:26 -0400 |
commit | f8db71695960795fa77ff45051df604d64ca2b1b (patch) | |
tree | 72e545ee5424ad158c0831980ad35f5e774d991d /src | |
parent | 76f29641e78d32d718de097aad7728fefc4e583f (diff) | |
download | jscu_refactor-f8db71695960795fa77ff45051df604d64ca2b1b.tar.gz |
Consolidate buildInfo into a single blob (#10)1.2.0
* Consolidate buildInfo into a single blob
* Move DataConfig interactions inside of the test_cmds finally clause
Diffstat (limited to 'src')
-rw-r--r-- | src/DataConfig.groovy | 3 |
1 files changed, 3 insertions, 0 deletions
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() {} |