aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/JobConfig.groovy18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/JobConfig.groovy b/src/JobConfig.groovy
new file mode 100644
index 0000000..34f782b
--- /dev/null
+++ b/src/JobConfig.groovy
@@ -0,0 +1,18 @@
+// src/JobConfig.groovy
+//package JobConfig;
+
+class JobConfig implements Serializable {
+
+ // Regression testing summary control
+ def post_rt_summary = false
+ def all_posts_in_same_issue = true
+
+ // Build retention control
+ def builds_to_keep = -1
+
+ // Development
+ def debug = false
+
+ // Constructors
+ JobConfig() {}
+}