aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatt Rendina <mrendina@stsci.edu>2018-10-03 14:02:31 -0400
committerMatt Rendina <rendinam@users.noreply.github.com>2018-11-20 10:28:45 -0500
commit1497f798cf5fb478b305788948aa941bc7c863c4 (patch)
tree8563ee27383dc5ba280904f2cfd1eec21106e618 /src
parentcbe6a226db898ea2d750b30c6046cc938243ae0c (diff)
downloadjscu_refactor-1497f798cf5fb478b305788948aa941bc7c863c4.tar.gz
Obtain github-api library at runtime.
Add JobConfig class Finalize
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() {}
+}